怎样用C++读入文本文件到类

文件内容如下:张明明01677882李成友02789188张辉灿03688256王露04564577陈东明05673847读入到classstudent{public:c... 文件内容如下:
张明明 01 67 78 82

李成友 02 78 91 88

张辉灿 03 68 82 56

王露 04 56 45 77

陈东明 05 67 38 47
读入到
class student
{
public:
char name[N];//定义学生姓名
int sno;//定义学号
float yuwen;//定义语文
float shuxue;//定义数学
float yingyu;//定义英语

};
展开
 我来答
厚如云0ae
2011-06-15 · TA获得超过157个赞
知道答主
回答量:51
采纳率:0%
帮助的人:49.9万
展开全部
#include<iostream>
#include<fstream>
using namespace std;

class student
{
public:
char name[10];//定义学生姓名
int sno;//定义学号
float yuwen;//定义语文
float shuxue;//定义数学
float yingyu;//定义英语

};

int main()
{
ifstream in("student.txt");
if(!in)
{
cout<<"error"<<endl;
return 0;
}
student stu[4];
for(int i=0; i<4; i++)
in>>stu[i].name>>stu[i].sno>>stu[i].yuwen>>stu[i].shuxue>>stu[i].yingyu;
for(int i=0; i<4; i++)
cout<<stu[i].name<<stu[i].sno<<stu[i].yuwen<<stu[i].shuxue<<stu[i].yingyu<<endl;
return 0;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式