探索者tansuozhe 2021-06-19 15:52 采纳率: 100%
浏览 120
已采纳

怎么用C语言读取多个txt文件中的字符并统计各字符出现的频率?

用的是visual studio2019,已经能够读取单个文件并统计字符个数了,但是多个文件就不知道怎么办了,求救!!!

  • 写回答

4条回答 默认 最新

  • 抬头见山 2021-06-19 17:12
    关注
    #include <iostream>
    #include <string> 
    #include <fstream> 
    #include <io.h>
    using namespace std;
    
    int main()
    {
    	struct _finddata_t fileinfo;
    	string in_path;
    	string in_name;
    	cout << "输入文件夹路径:";
    	cin >> in_path;
    	string curr = in_path + "\\*.txt";
    	long handle;
    	if ((handle = _findfirst(curr.c_str(), &fileinfo)) == -1L)
    	{
    		cout << "没有找到匹配文件!" << endl;
    		return 0;
    	}
    	else
    	{
    		in_name = in_path + "\\" + fileinfo.name;
    		cout << in_name << endl;
    		while (!(_findnext(handle, &fileinfo)))
    		{
    			in_name = in_path + "\\" + fileinfo.name;
    			cout << in_name << endl;
    		}
    		_findclose(handle);
    	}
    	system("pause");
    }
    

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog