c++统计文件中出现某位数的个数
发布时间:2024年01月03日
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<fstream>
#include<string>
#define NUM 33
#define NUM2 7
using namespace std;
//统计次数
bool ststistics(const char* path, int ball_16[NUM]) {
int result[NUM];
ifstream file;//读取文件
int i = 0;
//判断文件路径是否为空
if (!path) {
cerr << "path is NULL" << endl;
return false;
}
//打开文件
file.open(path);
if (file.fail())
{
cerr << "打开输入文件出错" << strerror(errno) << endl;
return false;
}
//读取文件到数组,一行读7个
do {
int i = 0;
for (i = 0; i < NUM2; i++)
{
file >> result[i];
if (file.eof())//检查文件是否已经到达了结尾(EOF)
{
break;
}
}
/*if (file.fail())
{
cerr << "读取文件出错" << strerror(errno) << endl;
return false;
}*/
if (i == 0) { break; }
if (i < NUM2) {
cerr << "只读到" << i << "行数据" << endl;
file.close();
return false;
}
//输出数组
for (i = 0; i < NUM2; i++)
{
cout << " " << result[i];
}
cout << endl;
//对读入的数据进行统计
for (i = 0; i < NUM2; i++)
{
int index = *(result + i) - 1;//1球>>0
if (index >= 0 && index < 33)
{
*(ball_16 + index) += 1;
}
}
} while (1);
file.close();
return true;
}
int main()
{
string filename;
int ball_16[NUM] = { 0 };
cout << "请输入文件名" << endl;
cin >> filename;
if (ststistics(filename.c_str(), ball_16))//文件类型转化.c_str
{
for (int i = 0; i < NUM; i++)
{
cout << "第" << i + 1 << "号球出现:" << ball_16[i] << endl;
}
}
else {
//统计失败
cerr << "统计出错" << endl;
}
}
文章来源:https://blog.csdn.net/qq_56294106/article/details/135373317
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:chenni525@qq.com进行投诉反馈,一经查实,立即删除!