怎样用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;//定义英语
}; 展开
张明明 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;//定义英语
}; 展开
1个回答
展开全部
#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;
}
#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;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询