c++编程对于文本文件infile.txt(自己建立该文件并输入内容),统计其中每个数字字符
对于文本文件infile.txt(自己建立该文件并输入内容),统计其中每个数字字符(0~9)的出现次数,将结果写入文本文件outfile.txt中急急急采用c++编程,谢...
对于文本文件infile.txt(自己建立该文件并输入内容),统计其中每个数字字符(0~9)的出现次数,将结果写入文本文件outfile.txt中
急急急采用c++编程,谢谢 展开
急急急采用c++编程,谢谢 展开
4个回答
展开全部
你这inFile是ifstream的对象吧?fstream对文件进行操作,ifstream类读文件,其对象自动将文件中的内容读入变量name中,而不是从屏幕上输入到变量中。如果你的inFile对象打开的文件中有内容的话,内容就被读入到了name中,这时只要cout<<name<<endl;就可以看到变量中的内容了。
写了一个例子,是可以直接运行读取文件中内容然后在屏幕输出的
#include <fstream.h>
void main()
{
ifstream inFile;
char name[1000] = ;
inFile.open("C:\\boot.ini");//每台计算机的系统盘都有个boot.ini的文本文件,是隐藏的系统文件。你可以换成其他目录下的文本文件,注意路径中凡是有\的地方都要改成\\,如D:\\my documents\\hello.txt
inFile>>name;
cout<<name<<endl;//和cin一样,inFile遇到空格就自动结束了
inFile.getline(name, 1000, '\r');//强制让其读空格和换行,遇到回车结束
cout<<name<<endl;
inFile.close();
}
写了一个例子,是可以直接运行读取文件中内容然后在屏幕输出的
#include <fstream.h>
void main()
{
ifstream inFile;
char name[1000] = ;
inFile.open("C:\\boot.ini");//每台计算机的系统盘都有个boot.ini的文本文件,是隐藏的系统文件。你可以换成其他目录下的文本文件,注意路径中凡是有\的地方都要改成\\,如D:\\my documents\\hello.txt
inFile>>name;
cout<<name<<endl;//和cin一样,inFile遇到空格就自动结束了
inFile.getline(name, 1000, '\r');//强制让其读空格和换行,遇到回车结束
cout<<name<<endl;
inFile.close();
}
展开全部
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
#define MAXN 2000
int main()
{
ifstream in("d:\\1.txt");
ofstream out("d:\\2.txt");
int arr[10] = {};
string str;
while (getline(in, str)) {
for (int i = 0; i < str.size(); i++) {
if (str[i] <= '9' && str[i] >= '0') {
arr[str[i] - '0']++;
}
}
}
out << "0 到 9 的数字统计" << endl;
for (int i = 0; i < 10; ++i)
out << i << " ";
out << endl;
for (int i = 0; i < 10; ++i)
out << arr[i] << " ";
in.close();
out.close();
return 0;
}
#include <fstream>
#include <string>
using namespace std;
#define MAXN 2000
int main()
{
ifstream in("d:\\1.txt");
ofstream out("d:\\2.txt");
int arr[10] = {};
string str;
while (getline(in, str)) {
for (int i = 0; i < str.size(); i++) {
if (str[i] <= '9' && str[i] >= '0') {
arr[str[i] - '0']++;
}
}
}
out << "0 到 9 的数字统计" << endl;
for (int i = 0; i < 10; ++i)
out << i << " ";
out << endl;
for (int i = 0; i < 10; ++i)
out << arr[i] << " ";
in.close();
out.close();
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <fstream>
using namespace std;
int main()
{
char ch;
int index;
int count[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
ifstream inf("infile.txt");
ofstream outf("outfile.txt");
while (!inf.eof())
{
inf >> ch;
index = ch - '0';
if (index >= 0 && index <=9)
{
count[index]++;
}
}
for (int i = 0; i < 10; i++)
{
outf << i << "=" << count[i] << endl;
}
inf.close();
outf.close();
return 0;
}
using namespace std;
int main()
{
char ch;
int index;
int count[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
ifstream inf("infile.txt");
ofstream outf("outfile.txt");
while (!inf.eof())
{
inf >> ch;
index = ch - '0';
if (index >= 0 && index <=9)
{
count[index]++;
}
}
for (int i = 0; i < 10; i++)
{
outf << i << "=" << count[i] << endl;
}
inf.close();
outf.close();
return 0;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把文件读到内存,然后进行分析。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询