- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 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 ...
}
anonimb84a2f6fd141 05.08.2013 20:51 # 0
bormand 05.08.2013 20:58 # +1
Да ну...
Сишный олдскул: http://www.cplusplus.com/reference/cstdio/fgets/
Крестоблядство: http://www.cplusplus.com/reference/string/string/getline/
P.S. Ну сколько уже можно постить лабы? Само-собой студенты еще не знают стандартные либы и приемы написания кода...
anonimb84a2f6fd141 06.08.2013 00:01 # −3
guest 20.08.2013 19:13 # −1