1. Pascal / Говнокод #6251

    +105

    1. 001
    2. 002
    3. 003
    4. 004
    5. 005
    6. 006
    7. 007
    8. 008
    9. 009
    10. 010
    11. 011
    12. 012
    13. 013
    14. 014
    15. 015
    16. 016
    17. 017
    18. 018
    19. 019
    20. 020
    21. 021
    22. 022
    23. 023
    24. 024
    25. 025
    26. 026
    27. 027
    28. 028
    29. 029
    30. 030
    31. 031
    32. 032
    33. 033
    34. 034
    35. 035
    36. 036
    37. 037
    38. 038
    39. 039
    40. 040
    41. 041
    42. 042
    43. 043
    44. 044
    45. 045
    46. 046
    47. 047
    48. 048
    49. 049
    50. 050
    51. 051
    52. 052
    53. 053
    54. 054
    55. 055
    56. 056
    57. 057
    58. 058
    59. 059
    60. 060
    61. 061
    62. 062
    63. 063
    64. 064
    65. 065
    66. 066
    67. 067
    68. 068
    69. 069
    70. 070
    71. 071
    72. 072
    73. 073
    74. 074
    75. 075
    76. 076
    77. 077
    78. 078
    79. 079
    80. 080
    81. 081
    82. 082
    83. 083
    84. 084
    85. 085
    86. 086
    87. 087
    88. 088
    89. 089
    90. 090
    91. 091
    92. 092
    93. 093
    94. 094
    95. 095
    96. 096
    97. 097
    98. 098
    99. 099
    100. 100
    function TForm1.CheckGameO: String;
    begin
     Result := '';
     If (A1.Tag = 2) and (A2.Tag = 2) then
      Begin
       Result := 'A3';
       If not CheckPos(Result) then Exit;
      End;
    
     If (A1.Tag = 2) and (A3.Tag = 2) then
      Begin
       Result := 'A2';
       If not CheckPos(Result) then Exit;
      End;
    
     If (A1.Tag = 2) and (C3.Tag = 2) then
      Begin
       Result := 'B2';
       If not CheckPos(Result) then Exit;
      End;
    
     If (A1.Tag = 2) and (B2.Tag = 2) then
      Begin
       Result := 'C3';
      If not CheckPos(Result) then Exit;
      End;
    
     If (A1.Tag = 2) and (B1.Tag = 2) then
      Begin
       Result := 'C1';
       If not CheckPos(Result) then Exit;
      End;
    
     If (A1.Tag = 2) and (C1.Tag = 2) then
      Begin
       Result := 'B1';
       If not CheckPos(Result) then Exit;
      End;
    
     If (B2.Tag = 2) and (C3.Tag = 2) then
      Begin
       Result := 'A1';
       If not CheckPos(Result) then Exit;
      End;
    
     If (B2.Tag = 2) and (A2.Tag = 2) then
      Begin
       Result := 'C2';
       If not CheckPos(Result) then Exit;
      End;
    
     If (B2.Tag = 2) and (C2.Tag = 2) then
      Begin
       Result := 'A2';
       If not CheckPos(Result) then Exit;
      End;
    
     If (B2.Tag = 2) and (C1.Tag = 2) then
      Begin
       Result := 'A3';
       If not CheckPos(Result) then Exit;
      End;
    
     If (B2.Tag = 2) and (A3.Tag = 2) then
      Begin
       Result := 'C1';
       If not CheckPos(Result) then Exit;
      End;
    
     If (B2.Tag = 2) and (B1.Tag = 2) then
      Begin
       Result := 'B3';
       If not CheckPos(Result) then Exit;
      End;
    
     If (B2.Tag = 2) and (B3.Tag = 2) then
      Begin
       Result := 'B1';
       If not CheckPos(Result) then Exit;
      End;
    
     If (C3.Tag = 2) and (A3.Tag = 2) then
      Begin
       Result := 'B3';
       If not CheckPos(Result) then Exit;
      End;
    
     If (C3.Tag = 2) and (B3.Tag = 2) then
      Begin
       Result := 'A3';
       If not CheckPos(Result) then Exit;
      End;
    
     If (C3.Tag = 2) and (C2.Tag = 2) then
      Begin
       Result := 'C1';
       If not CheckPos(Result) then Exit;
      End;
    
    ...

    Кто угадает для чего это предназначалось получит печенье.

    Govnocoder#0xFF, 06 Апреля 2011

    Комментарии (10)
  2. Pascal / Говнокод #6245

    +99

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    begin
      repeat
        if WSAStartup($101, Data) = SOCKET_ERROR then begin
          Writeln('Ошибка в WSAStrtup ' , WSAGetLastError);
          Break;
        end;
    
        repeat
          SetLength(Name, 256);
          if GetHostName(@Name[1], 256) = SOCKET_ERROR then begin
            WriteLn('Ошибка в GetHostName ', WSAGetLastError);
            Break;
          end;
    
          HE := GetHostByName(@Name[1]);
          if HE = nil then begin
            WriteLn('Ошибка в GetHostByName ', WSAGetLastError);
            Break;
          end;
    
          Write('Your inner IP:     ');
          WriteLn(inet_ntoa(PInAddr(HE.h_addr_list^)^));
    
          Write('Your inner name:   ');
          WriteLn(HE.h_name);
    
          repeat
            MainSocket := Socket(AF_Inet,Sock_Stream,0);
            if MainSocket = SOCKET_ERROR then begin
              Writeln('Ошибка в Socket ' , WSAGetLastError);
              Break;
            end;
            //
            CloseSocket(MainSocket);
          until false;
        until false;
        WSACleanUp;
      until false;
    end.

    Код, проверяющий все ошибки - он такой, да?

    TarasB, 06 Апреля 2011

    Комментарии (5)
  3. Pascal / Говнокод #6200

    +100

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    Procedure TForm1.Button1Click(Sender: TObject);
    Const
      NormText : string = 'АБВГДЕЁЖЗЫИЙКЛМНОПРСТУФХЦЧШЩЬЪЭЮЯ ';
      ObeznogText : string = 'А6ВrДЕЁЖ3ЫNµКЛМН0ПРС†YФXЦ4ШЩЬЪЗЮR ';
    Var
      sText, sBeznogText : String;
      i : Integer;
    BEGIN
     sText := Memo1.Text;
     sText := AnsiUpperCase(sText);
     sBeznogText := '';
     For i := 1 to Length(sText) do
      Begin
       sBeznogText := sBeznogText + (Copy(ObeznogText, Pos(sText[i], NormText), 1));
       If sText[i] = ' ' then
        bEgin
         Randomize;
         Case Random(5) of
          1: begin
              sBeznogText := sBeznogText + 'ДОСМОТ? ';
             End;
          3: begin
              sBeznogText := sBeznogText + 'РYКN ';
             end;
          5: begin
              sBeznogText := sBeznogText + 'БЕЗНОГ? ';
             end;
         End;
        eNd;
      End;
     Memo1.Text := sBeznogText;
    END;

    Автоматическое обезноживание текста. Сплойлер: БЕ3НОГNМ

    Govnocoder#0xFF, 03 Апреля 2011

    Комментарии (38)
  4. Pascal / Говнокод #6196

    +103

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    // Будет св. время - рефакторить данный кусок.
       typeArray[0] := (Char(Ord(Value[1])- 1)) + IntToStr(StrToInt(Value[2]) - 1);
       typeArray[1] := (Char(Ord(Value[1]) - 1)) + Value[2];
       typeArray[2] := (Char(Ord(Value[1]) - 1)) + IntToStr(StrToInt(Value[2]) + 1);
       typeArray[3] := Value[1] + IntToStr(StrToInt(Value[2]) - 1);
       typeArray[4] := Value[1] + IntToStr(StrToInt(Value[2]) + 1);
       typeArray[5] := (Char(Ord(Value[1]) + 1)) + IntToStr(StrToInt(Value[2]) - 1);
       typeArray[6] := (Char(Ord(Value[1]) + 1)) + Value[2];
       typeArray[7] := (Char(Ord(Value[1]) + 1)) + IntToStr(StrToInt(Value[2]) + 1);
    //-------!!!!!!!-----------

    Таки у погромистов тоже бывает полшестого!

    Govnocoder#0xFF, 02 Апреля 2011

    Комментарии (18)
  5. Pascal / Говнокод #6149

    +90

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    Uses CRT;
    const
         a=10;
         b=21;
         c=30;
    Var
       max: integer;
    Begin
         if (a>b) then
                  if (a>c) then
                     begin
                       max:=a;
                     end
                  else max:=c;
         if (b>a)then
                 if (b>c)then
                          max:=b
                 else
                   max:=c;
    Writeln(max);
    if (max mod 5 = 0 ) then
       writeln ('Кратное')
    else writeln('некратное');
       
    End.

    Juris_Kabanis, 30 Марта 2011

    Комментарии (13)
  6. Pascal / Говнокод #6035

    +91

    1. 1
    2. 2
    3. 3
    4. 4
    procedure TForm.ButtoClick(Sender: TObject);{не вздумай нажимать на эту конопку, уебок!! тогда проект не будет падать!!}
    begin
        {blah blah blah}
    end;

    нашел такой вот коммент в обработчике события 0_о

    TheHamstertamer, 20 Марта 2011

    Комментарии (11)
  7. Pascal / Говнокод #6023

    +99

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    var
      i,c,b,f:integer;
      str:string;
    procedure TForm1.codir;
    begin
    b:=1;
    f:=1;
    c:=length(edit1.Text);
    str:=edit1.Text;
    repeat
    i:=ord(str[f]);
    case i of
    0:inc(i);
    1:inc(i);
    2:inc(i);
    3:inc(i);
    4:inc(i);
    5:inc(i);
    6:inc(i);
    7:inc(i);
    8:inc(i);
    9:i:=0;
    end;
    
    Delete(str, b, 1);
    Insert(inttostr(i),str,b);
    inc(b);
    inc(f);
    until b=c;
    edit2.Text:=str;
    end;

    bugmenot, 19 Марта 2011

    Комментарии (3)
  8. Pascal / Говнокод #5992

    +119

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    Function F1(z: Byte): Real;  {Функция возведения (-1) в степень "к"}
    
      Begin
    
        If z=1
    
          Then F1:=-1
    
          Else F1:=F1(z-1)*-1;
    
      End;

    Нашел в лабораторной по вычмату 2-х годичной давности)

    1_and_0, 15 Марта 2011

    Комментарии (10)
  9. Pascal / Говнокод #5912

    +101

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    TLine = record
        X1, Y1, X2, Y2: smallint;
        Attr: array [0 .. 7] of byte;
      end;
    
    {rail:
        Attr[0]: Quality
        Attr[1]: ********
                 ||Weight of Station
                 ||10 = Station; 11 = Big Station
        Attr[2]: Count of passengers
        Real count = Attr[2] * (Attr[1] and $3F) / 63;
        Attr[3]: ****0100
                 ||||
                 |||for Selected
                 ||for "crossrail"
                 for MoveEndSel
      ===========================================
       bridge:
        Attr[0]: Quality
        Attr[1]: ********
                       ||
                       Z of ends
        Attr[2]:
        Attr[3]: ****1100
      ===========================================
       3d-object:
        Attr[0]: Number
        Attr[1-2]: RandSeed
        Attr[3]: ****1111
      ===========================================
      Attr[4..7] reserved, but not used
    
      }

    Это я был вынужден написать себе такую памятку после попыток понять свой код, начатый на 3 курсе.
    В будущем я учёл свои ошибки при написании http://govnokod.ru/5261

    TarasB, 06 Марта 2011

    Комментарии (13)
  10. Pascal / Говнокод #5902

    +92

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    procedure TForm1.Button1Click(Sender: TObject);
    var
    outfi:string;
    begin
      if OpenDialog1.Execute then
      begin
      outfi:=sysutils.ExtractFilePath((OpenDialog1.FileName))+'/program.asm';
      windows.CreateFile(PChar(outfi),0,0,0,0,0,0);
      AssignFile(outPutFile,outfi);
      Rewrite(outPutFile);
      Append(outPutFile);
      AssignFile(inPutFile,OpenDialog1.FileName);
      Reset(inPutFile);
      init();
      writeLn(outPutFile,prologMemo.Lines.GetText());
     
      doprogram();
     
      writeLn(outPutFile,epilogMemo.Lines.GetText());
     
      CloseFile(outPutFile);
      CloseFile(inPutFile);
      ShellExecute( 0, 'open', PChar(outfi), nil, nil, SW_SHOWNORMAL);
      end;
    end;

    bugmenot, 06 Марта 2011

    Комментарии (5)