标题:好忙好忙
关键词:文本文件的读写
内容
A. 一句话概括今日目标完成情况
(a)文本文件的读写 100%
(b)
B.具体内容
总之还是感觉这个读写文件挺神奇的,自己通过编程的方式来读取、创建了一个新的文件,虽然很简单,但这一小步我也认为是意义深远的。
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
char ch[20];
int math,eng,phy;
ifstream fin("file.txt");
ofstream fout("res.txt");
if(!fin||!fout){
cout<<"Failed to open this file"<<endl;
return 1;
}
while(fin){
fin>>ch>>math>>eng>>phy;
if(fin){
float avg=1.0*(math+eng+phy)/3;
fout<<ch<<'\t'<<math<<'\t'<<eng<<'\t'<<phy<<'\t'<<avg<<endl;
}
}
fin.close();
fout.close();
cout<<endl<<"Thanks for using!"<<endl;
return 0;
}
C.明日计划
我的博客:http://blog.csdn.net/andr3zzzz