用C++编程写一个学生管理系统,并把数据保存txt文件中
用C++编程写一个学生管理系统,系统代码我写好了,老师要求把学生管理系统输入的数据保存到txt文件中,就是在控制台输入成绩,学号,然后生成txt文件,在里面显示原来的成绩...
用C++编程写一个学生管理系统,系统代码我写好了,老师要求把学生管理系统输入的数据保存到txt文件中,就是在控制台输入成绩,学号,然后生成txt文件,在里面显示原来的成绩学号。系统代码我写好了,就不会保存,那应该写什么代码啊?详细点
展开
1个回答
展开全部
包含文件流类,建立输入输出文件流类对象,就可以像使用cout和cin一样对文件进行操作了。例如:
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
//out
char id[11]="1234567890";
int score=85;
ofstream fout("c:\\test.txt");
fout <<id <<" " <<score;
fout.close();
//in
ifstream fin("c:\\test.txt");
fin >>id >>score;
fin.close();
cout <<id <<"," <<score <<endl;
return 0;
}
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
//out
char id[11]="1234567890";
int score=85;
ofstream fout("c:\\test.txt");
fout <<id <<" " <<score;
fout.close();
//in
ifstream fin("c:\\test.txt");
fin >>id >>score;
fin.close();
cout <<id <<"," <<score <<endl;
return 0;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询