【正确答案】:从键盘输入学生的学号、姓名和成绩,将它们存入文件 score.txt 中,为了方便程序 实现,假设学号不超过 10 个字节、姓名不超过 20 个字节,成绩为整型。
参考程序如下:定义 1 分,文件存储 2 分,输入输出 2 分
#include
#include
using namespace std;
int main()
{
char id[11],name[21];
int score;
ofstream outFile;
outFile.open("score.txt",ios::out);
if(!outFile)
{
cout<<"创建文件失败"<
}
while(cin>>id>>name>>score)
outFile<
return 0;
}