1. C++ / Говнокод #13545

    +12

    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
    void FileCreate(const char *name)
    {
    	ofstream F;
    	F.open(name); // Create file 
    	F.close(); //close the file
    }
    
    void InputProduct(Product &b) //function for entering product
    {
    	char c; int i=0;
    
    	cout<<"Input name of product \n"; 
    	// enter the string until you meet the character \n or EOF or until a limit is the number of symbols
    	for ( i=0; i<l_name && (c = getchar())!= EOF && c!='\n';++i ) 
    		b.name[i] = c ; 
    	b.name[i]='\0'; // at the end of the line write the terminating line \0
    
        // rest of code ...
    }

    Студенты такие студенты ...

    Запостил: denis90, 03 Августа 2013

    Комментарии (4) RSS

    • Тут даже readline нет? Кого этому говну учат?
      Ответить
      • > Тут даже readline нет
        Да ну...
        Сишный олдскул: http://www.cplusplus.com/reference/cstdio/fgets/
        Крестоблядство: http://www.cplusplus.com/reference/string/string/getline/

        P.S. Ну сколько уже можно постить лабы? Само-собой студенты еще не знают стандартные либы и приемы написания кода...
        Ответить
        • Тогда хоть пишите, что это лабы, а то можно подумать, что ЦПП еще большее говно, чем на самом деле.
          Ответить
    • Это C++
      Ответить

    Добавить комментарий