第一题1、编写一段程序,统计一个文本中的字符数,单词数以及行数,单词由空格分开。

本文介绍了如何使用C++中的ifstream和fstream库读取并统计1.3.4.txt文件中的字符数、单词数和行数,展示了基本的文本处理方法。
摘要由CSDN通过智能技术生成

#include <iostream>  
#include <fstream>  
#include <string>  
using namespace std;  
  
int main() {  
    ifstream file("1.3.4.txt"); // 假设输入文件名为input.txt  
    if (!file) {  
        cerr << "无法打开文件" << endl;  
        return 1;  
    }  
  
    int charCount = 0, wordCount = 0, lineCount = 0;  
    string word;  
    bool inWord = false;  
    char ch;  
  
    while (file.get(ch)) {  
        charCount++;  
        if (ch == '\n') lineCount++;  
        if (isspace(ch)) {  
            if (inWord) {  
                wordCount++;  
                inWord = false;  
            }  
        } else {  
            if (!inWord) {  
                wordCount++;  
                inWord = true;  
            }  
        }  
    }  
    if (inWord) wordCount++; // 处理最后一个单词  
    cout << "字符数: " << charCount << endl;  
    cout << "单词数: " << wordCount << endl;  
    cout << "行数: " << lineCount << endl;  
  
    file.close();  
    return 0;  
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值