关于c++文件流的读写问题?一下程序为什么实现不了?

#include<iostream>#include<fstream>#include<string>usingnamespacestd;classStudent{pub... #include <iostream>
#include <fstream>
#include <string>

using namespace std;

class Student
{
public:
Student(int pn)
{
n = pn;
}
void Input();
void Output();
private:
int n;
string name;
string num;
string score;
};

void Student::Input()
{
fstream ifile;
ifile.open("student.txt", ios::out);
for (int i = 0; i < n; i++)
{
cout << "输入第" << i + 1 << "位学生的学号 " << "姓名 " << "成绩 :";
cin >> num;
num = "学号: " + num;
cin >> name;
name = " 姓名: " + name;
cin >> score;
score = " 成绩:" + score + '\0';
ifile >> num; //这里实现数据的写入,怎么写不进去????
ifile >> name;
ifile >> score;
}
ifile.close();
cout << "保存完成!" << endl;
}

void Student::Output()
{
fstream ofile;
fstream ifile;
ifile.open("student.txt", ios::out);
ofile.open("save_student.txt", ios::in);
char ch;
for(int i=0; i<n; i++)
{
while(ifile.get(ch)!='\0')
{
ofile << ch;
}
}
ifile.close();
ofile.close();
cout << "读取完成!" << endl;
}

int main()
{
int n;
cout << "请输入学生的人数:";
cin >> n;
Student s(n);
cout << "以下输入每一位学生的成绩,保存到文件student.txt中" << endl;
s.Input();
cout << "以下读出每一位学生的成绩,保存到文件save_student.txt中" << endl;
s.Output();
return 0;
}
展开
 我来答
bignode
2014-12-07 · TA获得超过2664个赞
知道大有可为答主
回答量:1427
采纳率:75%
帮助的人:545万
展开全部
流运算符写反了。
ifile >> num; //这里实现数据的写入,怎么写不进去????
>> 是读出,<<才是写入
更多追问追答
追问
谢谢!还有我想问ios::out和ios::in是有什么区别啊?一直搞混起来。
追答
ios::out  标准化输出设备,默认是屏幕
ios::in 标准化输入设备,默认是键盘
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式