c++实现两个文件的拼接。

  问题描述:

  要求把第二个文件拼接到第一个文件的末尾。 如把file2 拼接到 file末尾。 (直接复制一下不就行了嘛! 但是老师非让编程, 真是蛋疼!!,而且是闲的蛋疼!!!)。例如:

file1: I am not responsible of this code. They made me write it, against my will.   file2: When I wrote this, only God and I understood what I was doing. Now, God only kowns.   拼接后: file1: I am not responsible of this code. They made me write it, against my will. When I wrote this, only God and I understood what I was doing. Now, God only kowns.

知识点: 文件流类。

#include<iostream>
#include<fstream>
using namespace std; const int maxn = +; int main()
{
char str[maxn];
ifstream cin("file2.txt");
ofstream cout("file1.txt", ios::app);
while(cin.getline(str, maxn))
{
cout<<str<<endl;
}
return ;
}

一周内请勿抄袭! 以防作业雷同!

后面的题目也是我的作业题, 也都是关于I/0流的, 只不过比较水! I/0流是理解C++面向对象的典型例子之一, 所以在此也附上。

《2》使用I/O流, 以文本方式建立一个文件。并写入一串字符。

#include<iostream>
#include<fstream>
using namespace std; int main()
{
ofstream cout("file3.txt");
cout<<"该文件已成功建立!";
return ;
}
#include<iostream>
#include<fstream>
#include<string>
using namespace std; struct stu{
string num;
string name;
double score;
}Stu; int n; void judge(double a)
{
cout<<"成绩等级:";
if(a>=90) cout<<"优\n";
else if(a>=80) cout<<"良\n";
else if(a>=70) cout<<"中\n";
else if(a>=60) cout<<"及格\n";
else cout<<"不及格\n";
}
int main()
{
{//老是错,最后终于对啦, 原来是作用域的锅!!!
ofstream fc("stud.dat");
if(fc.fail())
{
cerr<<"error opening file\n";
return 0;
}
cout<<"请输入学生的总人数:\n";
cin>>n;
int T=n;
while(T--)
{
cout<<"请输入学生的学号 姓名 成绩\n";
cin>>Stu.num>>Stu.name>>Stu.score;
fc<<Stu.num<<" "<<Stu.name<<" "<<Stu.score<<" ";
}
}
ifstream cc("stud.dat");
while(n--)
{
cc>>Stu.num>>Stu.name>>Stu.score;
cout<<"学号:"<<Stu.num<<endl;
cout<<"姓名:"<<Stu.name<<endl;
cout<<"成绩:"<<Stu.score<<endl;
judge(Stu.score);
}
return 0;
}

《3》使用串流I/O的方式, 对字符串逐个读取。 如字符串“12345667899,,,,,”。

#include<iostream>
using namespace std; int main()
{
char c;
while(c=cin.get())
{
cout<<c<<endl;
}
return ;
}

《4》 输入一系列的数据(学号, 姓名, 成绩)存放在文件 stud.dat中, 输出这些学生的数据和相应的成绩等级(优, 良,,,,)。

这道题有细节性问题(气死我啦!!!)。

 #include<iostream>
#include<fstream>
#include<string>
using namespace std; struct stu{
string num;
string name;
double score;
}Stu; int n; void judge(double a)
{
cout<<"成绩等级:";
if(a>=) cout<<"优\n";
else if(a>=) cout<<"良\n";
else if(a>=) cout<<"中\n";
else if(a>=) cout<<"及格\n";
else cout<<"不及格\n";
}
int main()
{
{//老是错,最后终于对啦, 原来是作用域的锅!!!
ofstream fc("stud.dat");
if(fc.fail())
{
cerr<<"error opening file\n";
return ;
}
cout<<"请输入学生的总人数:\n";
cin>>n;
int T=n;
while(T--)
{
cout<<"请输入学生的学号 姓名 成绩\n";
cin>>Stu.num>>Stu.name>>Stu.score;
fc<<Stu.num<<" "<<Stu.name<<" "<<Stu.score<<" ";
}
}
ifstream cc("stud.dat");
while(n--)
{
cc>>Stu.num>>Stu.name>>Stu.score;
cout<<"学号:"<<Stu.num<<endl;
cout<<"姓名:"<<Stu.name<<endl;
cout<<"成绩:"<<Stu.score<<endl;
judge(Stu.score);
}
return ;
}

《5》 在二进制文件中写入三个记录(啥是记录?,百度解释: 记录:jì lù]

 

记录,汉语词语,把所见所闻通过一定的手段保留下来,并作为信息传递开去。

然而弱智的我并不能清楚的理解, 想哭!), 然后显示其内容。 然后删除第二个记录。 现在我以我的理解方式做题。我的理解: 就是删除第二个字符串。

下面的代码是推广版的, 不仅适用于多个记录, 而且能删减任意一个记录。

 #include<iostream>
#include<fstream>
#include<string>
using namespace std; string str, str2;
int n = ; //可以更改, 以便满足多个记录的情况 int main()
{
{
ofstream fc("data.dat");
if(fc.fail())
{
cerr<<"error opening file\n";
return ;
} cout<<"请依次输入3个记录\n";
for(int i=; i<=n; i++)
{
cin>>str;
fc<<str<<" ";
}
}
cout<<"输入你要删除的记录:\n";
cin>>str2;
{
ifstream cc("data.dat");
cout<<"~~未删减版\n\n";
for(int i=; i<=n; i++)
{
cc>>str;
cout<<str<<endl;
}
}
{
ifstream cc("data.dat");
cout<<"~~删减版,广电总局的锅!\n\n";
for(int i=; i<=n; i++)
{
cc>>str;
if(str!=str2)cout<<str<<endl;
}
}
return ;
}

《6》删除 文件里注释

哎!最近在看“紫书”, 发现作者的代码库中的代码是有不少是用中文写的, 你知道的, 当我用cpp的格式打开的时候, 中文全部变成了乱码, 一大波的乱码。 对于十分看重代码“长相”的我当然不能忍受。 谁敢*我神圣的代码, 谁? 我就问一句, 他妈的还有谁?。所以,我就一不做, 二不休, 删除了所有的注释。但是一行一行的删实在是太SB啦, 于是乎, 我就写了下面的小程序。

删除 文件里注释的代码。

 #include<iostream>
#include<cstring>
#include<fstream>
using namespace std; const int MAXN = +;
char s[MAXN]; int main()
{
int i, len, flag=;//控制文件结束的标志
ifstream cin("file.cpp");
ofstream cout("file2.cpp");
while()
{
cin.getline(s, MAXN);
len = strlen(s);
if(len==)
{
flag++;
if(flag==) break;//这里表示,当连续出现两个空行时,文件结束。
}
else flag = ;
for(i=; i<len; i++)
{
if(s[i]==s[i+]&&s[i]=='/')
break;
}
for(int j=; j<i; j++)
cout<<s[j];
if(i!=)cout<<endl;
}
return ;
}

《7》提取文件里的注释。

等我删完注释, 我那个成就感啊, 简直就是爽的,,,,,。 然而, 问题很快就来啦。你们知道:“草滩小恪”--就是在下。是一个名副其实的菜鸟。 “紫书”上的代码大都具有很巧妙地技巧。 如果没有注释,渣渣的,弱弱的, “草滩小恪”怎么可能看懂嘛!。所以“草滩小恪”一直想破译乱码。然而, 微软早已看穿了一切。原来, “草滩小恪”无意中发现,用记事本直接打开cpp源文件, 里面的注释竟然不是乱码(记事本功能强大, 请有兴趣者自行google)。 于是懒惰的“草滩小恪”希望把txt文件里面的注释都提取出来。

于是下面的程序横空出世!

 //提取注释
#include<iostream>
#include<cstring>
#include<fstream>
using namespace std; const int MAXN = +;
char s[MAXN]; int main()
{
int i, len, flag=;//控制文件结束的标志
ifstream cin("file1.txt");
ofstream cout("file.cpp");
while()
{
cin.getline(s, MAXN);
len = strlen(s);
if(len==)
{
flag++;
if(flag==) break;//这里表示,当连续出现两个空行时,文件结束。
}
else flag = ;
for(i=; i<len; i++)
{
if(s[i]==s[i+]&&s[i]=='/')
break;
}
for(int j=i; j<len; j++)
cout<<s[j];
if(i!=len)cout<<endl;
}
return ;
}
上一篇:[bzoj2118]墨墨的等式【dijk+堆】


下一篇:谈谈php依赖注入和控制反转