1. Список говнокодов пользователя belozorov63

    Всего: 2

  2. C++ / Говнокод #18274

    +143

    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
    if(file.open(QIODevice::ReadOnly))
    {
        QTextStream in(&file);
    
        while(!in.atEnd())
        {
            textString = in.readLine();
            linesText += textString;
            linesText += "\n";
        }
    
        linesText.chop(1);
    }
    else
        try
        {
            throw 20;
        }
        catch (int e)
        {
            cout « "Файл записей не был открыт!" « e « endl;
        }

    В проекте одногруппника

    belozorov63, 03 Июня 2015

    Комментарии (0)
  3. C++ / Говнокод #18266

    +142

    1. 1
    2. 2
    3. 3
    4. 4
    if (currentValueP > 1 || currentValueP < 1)
    valueIsCorrect = false;
    else if (currentValueP == 1)
    valueIsCorrect = true;

    бесплатно valueIsCorrect = currentValueP == 1;

    belozorov63, 01 Июня 2015

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