1. Java / Говнокод #231

    −48

    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
    private static final String PROMPT = " >";
    private static final int BUFFER_SIZE = 255;
    private static final int NEW_LINE_CHAR = 13;
    private static final int CARRIAGE_RETURN_CHAR = 10;
    ...
    System.out.print( prompt + PROMPT );
    StringBuffer sb = new StringBuffer();
    byte[] buf = new byte[BUFFER_SIZE];
    int read = System.in.read( buf );
    if ( read != 0 && buf[0] != CARRIAGE_RETURN_CHAR && buf[0] != NEW_LINE_CHAR )
    {
        sb.append( new String( buf, 0, read ).trim() );
    }
    return sb.toString();

    Вам нужно вывести приглашение и прочитать введенную строку? Что может быть проще?

    guest, 20 Декабря 2008

    Комментарии (2)
  2. Java / Говнокод #230

    −53.2

    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
    private void setTims( String project )
    {
        int endIndex = project.indexOf( "-" );
        boolean isNumber = false;
        if ( endIndex != -1 )
        {
            try
            {
                Integer.parseInt( project.substring( 0, endIndex ) );
                isNumber = true;
            }
            catch ( NumberFormatException e )
            {
                //ignore
            }
        }
        if ( isNumber )
        {
            runtimeContext.put( RuntimeContext.TIMS_NUMBER, project.substring( 0, endIndex ) );
        }
        else
        {
            runtimeContext.put( RuntimeContext.TIMS_NUMBER, project );
        }
    }

    guest, 20 Декабря 2008

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

    +20.5

    1. 1
    b:=(1-(n+1))/2

    Ничего не трогать, пусть работает, как есть!

    guest, 20 Декабря 2008

    Комментарии (10)
  4. C++ / Говнокод #228

    +20

    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
    source code: C++
    
    
    enum e_acomany {
    	Audi,
    	BMW, 
    	Cadillac, 
    	Ford,
    	Jaguar, 
    	Lexus 
    	Maybach, 
    	RollsRoyce, 
    	Saab
    };
    ?>

    Маны бывают разные. Этот, например, по C++

    guest, 20 Декабря 2008

    Комментарии (20)
  5. C++ / Говнокод #227

    −74.2

    1. 1
    2. 2
    3. 3
    4. 4
    CString temp;
    temp.Preallocate(5000);
    GetName(temp.GetBuffer());
    name_.Format(L"%s", temp);

    На самом деле после GetBuffer нужен ReleaseBuffer и Preallocate резервирует место, но не устанавливает длину.
    Эти ошибки приводят к тому что использование name_ в GetName не работает и name_ = temp тоже не работает.
    Хитрый "индокодер" выкрутился через Format.

    guest, 19 Декабря 2008

    Комментарии (21)
  6. C++ / Говнокод #226

    +24

    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
    while (!bFound && j < enmMessages)
    {
    	if (!strcmp(str.operator const char * (), strPacketName[j]))
    	{
    		iPacketType = j;
    		bFound = true;
    		TRACE(" of type %s\n",strPacketName[j]);
    		strcat(strOut," of type ");
    		strcat(strOut, strPacketName[j]);
    		break;
    	}
    	j++;
    }

    guest, 19 Декабря 2008

    Комментарии (23)
  7. C++ / Говнокод #225

    +21

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    #include <iostream>
    #define true false
    #define false true
    using namespace std;
    int main(){
    	bool a = true;
    	bool b = false;
    	cout << "a " << a << endl << "b " << b << endl;
    	system("pause");
    	return 0;
    }

    По логике должно всё стать вечным тру, а получаем без изменений:(

    guest, 19 Декабря 2008

    Комментарии (0)
  8. PHP / Говнокод #224

    +27

    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
    <?php
    #----0000------------------------------------#
    #----00--00----------------------------------#
    #----00---000----000000----000000--#
    #----00---0000--00----00----00---00--#
    #----00---0000--00-----------00---------#
    #----00---0000--000000----00000----#
    #----00---000----00-----------00---------#
    #----00--00-------00---00----00---------#
    #----0000---------000000---00----------#
    #===============================#
    #       +Загруз центр for JohnCMS+     #
    #                      Автор  def                      #
    #                 ICQ: 9904080                    #
    # По всем вопросам пишите в ICQ. #
    #------------------------------------------------#
    define('_IN_JOHNCMS',1);
    
    require_once ("../incfiles/core.php");
    require_once ("../incfiles/head.php");      // Загрузка темы оформления
    ///////////////////
    require_once "inc/func.inc";
    require_once "inc/conf.inc";
    antihack();

    стоит ли показывать остальной файл?

    guest, 19 Декабря 2008

    Комментарии (5)
  9. C# / Говнокод #223

    +10.6

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    9. 9
    private void UpdateLabel(string str)
            {
                if (str == "!0123clear3210!")
                {
                    textBox1.Clear();
                    return;
                }
                textBox1.AppendText(str);
            }

    а иногда стираем

    guest, 19 Декабря 2008

    Комментарии (6)
  10. PHP / Говнокод #222

    +37.7

    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
    <div id="navLine">
            <? if(isset($title5)) { ?>
              <a href="index.php">Главная</a>&nbsp;&raquo; 
              <a href="index.php?page=<?=$link?>"><?=htmlspecialchars($title)?></a> &nbsp;&raquo;
              <a href="index.php?page=<?=$link2?>"><?=htmlspecialchars($title2)?></a> &nbsp;&raquo;
              <a href="index.php?page=<?=$link3?>#"><?=htmlspecialchars($title3)?></a> &nbsp;&raquo; 
              <a href="index.php?page=<?=$link4?>"><?=htmlspecialchars($title4)?></a>
            <? } elseif(isset($title4)) { ?>
              <a href="index.php">Главная</a>&nbsp;&raquo; 
              <a href="index.php?page=<?=$link?>"><?=htmlspecialchars($title)?></a>&nbsp;&raquo; 
              <a href="index.php?page=<?=$link2?>"><?=htmlspecialchars($title2)?></a>&nbsp;&raquo; 
              <a href="index.php?page=<?=$link3?>"><?=htmlspecialchars($title3)?></a>
            <? } elseif(isset($title3)) { ?>
              <a href="index.php">Главная</a>&nbsp;&raquo;
              <a href="index.php?page=<?=$link?>"><?=htmlspecialchars($title)?></a>&nbsp;&raquo; 
              <a href="index.php?page=<?=$link2?>"><?=htmlspecialchars($title2)?></a>
            <? } elseif(isset($title2)) { ?>
              <a href="index.php">Главная</a>&nbsp;&raquo; 
              <a href="index.php?page=<?=$link?>"><?=htmlspecialchars($title)?></a>
            <? } else { ?>
              <a href="index.php">Главная</a>
            <? } ?>
      </div>

    guest, 19 Декабря 2008

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