标题:如何实现读取文件并统计单词个数和最长单词字母个数呢?
只看楼主
kyliell
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2016-11-18
 问题点数:0 回复次数:1 
如何实现读取文件并统计单词个数和最长单词字母个数呢?
学校作业,苦逼大一新生,求助
只会写#include <iostream>
#include <fstream>
using namespace std;




int main(int argc, char* argv[])
{
    ifstream infile;
    ofstream outfile;
    infile.open(argv[1]);
    if(infile.fail()){
        cerr<<"Error: Input file cannot be opened"<<endl;
        return -1;
    }
    if(outfile.fail()){
        cerr<<"Error: Output file cannot be opened"<<endl;
        return -1;
    }
   
    int wordCount = 0;
    while(!infile.eof()){
        char c= infile.get();
        if(c==' '){
            wordCount++;
    }}
   
      
   
    return 0;
}
这一部分
搜索更多相关主题的帖子: 大一新生 include return cannot opened 
2016-11-18 06:58
kyliell
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2016-11-18
得分:0 
不上include string
2016-11-18 06:59



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-471283-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015362 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved