使用c++,定义一个学生类(姓名,成绩),然后再定义一个学生数组,把三个学生的信息存入纯文本文件中 20

使用c++,定义一个学生类(姓名,成绩),然后再定义一个学生数组,把三个学生的信息存入纯文本文件中照片中是我编写的,不报错,但是名字存不到文件中,各位大神给我改改#inc... 使用c++,定义一个学生类(姓名,成绩),然后再定义一个学生数组,把三个学生的信息存入纯文本文件中照片中是我编写的,不报错,但是名字存不到文件中,各位大神给我改改
#include<fstream>
#include<iostream>
#include<string>
using namespace std;
class student{
public:
char name[11];
int chinese;
int math;
public:
void grade(){int i=0;
string name; cin>>name;
cin>>chinese>>math;
cout<<"姓名"<<name<<'\t'<<"语文"<<chinese<<'\t'<<"数学"<<math<<endl;}};
void main()
{student aa[3];
int i=0,j;
for(i;i<3;i++)
aa[i].grade();
ofstream ofile;
ofile.open("d:\\myfile.txt");

for(i=0;i<3;i++) { for(j=0;j<10;j++) ofile<<aa[i].name[j];
ofile<<aa[i].chinese<<'\t'<<aa[i].math<<endl;}
ofile.close();

}
展开
 我来答
GTA小鸡
高粉答主

2018-09-25 · 醉心答题,欢迎关注
知道大有可为答主
回答量:2.6万
采纳率:78%
帮助的人:1.3亿
展开全部
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
class student
{
public:
    student(string name, int score):name(name),score(score){}
    friend ostream& operator<<(ostream&, const student&);
private:
    string name;
    int score;
};

ostream& operator<<(ostream& os, const student& s)
{
    os<<s.name<<' '<<s.score<<endl;
}

int main()
{
    student stu[]={student("Alice", 90), student("Bob", 91), student("Charlie", 92)};
    ofstream out("student.txt");
    out<<stu[0]<<stu[1]<<stu[2];
    out.close();
    return 0;
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
微生雍0HY
2018-09-25 · 超过14用户采纳过TA的回答
知道答主
回答量:152
采纳率:17%
帮助的人:34.7万
展开全部
淮上喜会梁州故人(韦应物)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式