用Visual C++6.0,编写一个小程序,实现的功能是:能够读取一个*.txt文件,然后一次而列出里面得内容
内容里面包含:数字,汉字,字母对于大概的实现操作知道,写的代码总是出错,总觉得太想当然,思维混乱了具体细节处理我就不是特别清楚麻烦看到的你能先讲解下你的思路,然后附上正确...
内容里面包含:数字,汉字,字母
对于大概的实现操作知道,写的代码总是出错,总觉得太想当然,思维混乱了
具体细节处理我就不是特别清楚
麻烦看到的你能先讲解下你的思路,然后附上正确的能编译执行的代码:
感谢!!! 展开
对于大概的实现操作知道,写的代码总是出错,总觉得太想当然,思维混乱了
具体细节处理我就不是特别清楚
麻烦看到的你能先讲解下你的思路,然后附上正确的能编译执行的代码:
感谢!!! 展开
2个回答
展开全部
思跑一行一行的获取文件里的数据。不管数据具体内容是什么,只有是文本,用string就能正确的保存内容。
你自己在D盘上建一个名为test.txt的测试文件
#include<iostream>
#include<string>
#include<fstream>
using namespace std;
int main ()
{
string str;
fstream fil("D:\\test.txt");
if(!fil){cout <<"文件打开出错"<<endl;
return 0;
}
while(getline(fil,str),fil){
cout <<str<<endl;
}
return 0;
}
你自己在D盘上建一个名为test.txt的测试文件
#include<iostream>
#include<string>
#include<fstream>
using namespace std;
int main ()
{
string str;
fstream fil("D:\\test.txt");
if(!fil){cout <<"文件打开出错"<<endl;
return 0;
}
while(getline(fil,str),fil){
cout <<str<<endl;
}
return 0;
}
展开全部
以下是文件名和文件内容:
data.txt输入文件
-----------------------
8
zhangSan 23 beijing
lisi 123 shanghai
mawu 56 liaoning22
zhao3LIU 12 guangxi
huangqi 30 jiangxi
wangba -32 hu2nan
haijiu 43 yunnan
haoshi 21 xinjiang
------------------------
err.txt输出文件,运行之后会显示如下内容
------------------------
lisi 123 shanghai
mawu 56 liaoning22
zhao3LIU 12 guangxi
wangba -32 hu2nan
*/
#include<iostream>
#include<fstream>
#include<strstream>
#include<string>
#include<vector>
using namespace std;
typedef struct
{
string name;
int age;
string add;
void out()
}student;
int main()
{
ifstream infile("data.txt",ios::in);
vector<int>err;
if(!infile)
{
cerr<<"open error!"<<endl;
exit(1);
}
string s;
int n,i=0,flag=0;
//student st[8];
infile>>n;
student *st=new student[n];
while(n--)
{
//getline(infile,s);
flag=0;
infile>>st[i].name>>st[i].age>>st[i].add;
//infile>>st[i].age;
//infile>>st[i].add;
string::size_type j;
string c;
for(j=0;j<st[i].name.size();j++)
if(!isalpha(st[i].name[j]))
{
flag=1;
break;
}
if(flag==0)
{
if(st[i].age>120||st[i].age<0)
flag=1;
}
if(flag==0)
{
for(j=0;j<st[i].add.size();j++)
if(!isalpha(st[i].add[j]))
{
flag=1;
break;
}
}
if(flag==1)err.push_back(i);
i++;
}
infile.close();
ofstream outfile("err.txt");
if(!outfile)
{
cerr<<"open err.txt error!"<<endl;
exit(1);
}
vector<int>::size_type ei;
for(ei=0;ei<err.size();ei++)
outfile<<st[err[ei]].name<<" "<<st[err[ei]].age<<" "<<st[err[ei]].add<<endl;
outfile.close();
delete [] st;
return 0;
}
data.txt输入文件
-----------------------
8
zhangSan 23 beijing
lisi 123 shanghai
mawu 56 liaoning22
zhao3LIU 12 guangxi
huangqi 30 jiangxi
wangba -32 hu2nan
haijiu 43 yunnan
haoshi 21 xinjiang
------------------------
err.txt输出文件,运行之后会显示如下内容
------------------------
lisi 123 shanghai
mawu 56 liaoning22
zhao3LIU 12 guangxi
wangba -32 hu2nan
*/
#include<iostream>
#include<fstream>
#include<strstream>
#include<string>
#include<vector>
using namespace std;
typedef struct
{
string name;
int age;
string add;
void out()
}student;
int main()
{
ifstream infile("data.txt",ios::in);
vector<int>err;
if(!infile)
{
cerr<<"open error!"<<endl;
exit(1);
}
string s;
int n,i=0,flag=0;
//student st[8];
infile>>n;
student *st=new student[n];
while(n--)
{
//getline(infile,s);
flag=0;
infile>>st[i].name>>st[i].age>>st[i].add;
//infile>>st[i].age;
//infile>>st[i].add;
string::size_type j;
string c;
for(j=0;j<st[i].name.size();j++)
if(!isalpha(st[i].name[j]))
{
flag=1;
break;
}
if(flag==0)
{
if(st[i].age>120||st[i].age<0)
flag=1;
}
if(flag==0)
{
for(j=0;j<st[i].add.size();j++)
if(!isalpha(st[i].add[j]))
{
flag=1;
break;
}
}
if(flag==1)err.push_back(i);
i++;
}
infile.close();
ofstream outfile("err.txt");
if(!outfile)
{
cerr<<"open err.txt error!"<<endl;
exit(1);
}
vector<int>::size_type ei;
for(ei=0;ei<err.size();ei++)
outfile<<st[err[ei]].name<<" "<<st[err[ei]].age<<" "<<st[err[ei]].add<<endl;
outfile.close();
delete [] st;
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询