91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c++怎么讀取文件行數

c++
小億
518
2023-11-10 23:56:31
欄目: 編程語言

在C++中,可以使用以下方法讀取文件的行數:

#include <iostream>
#include <fstream>
#include <string>

int main() {
    std::ifstream file("example.txt");
    
    if (!file) {
        std::cerr << "Failed to open the file." << std::endl;
        return 1;
    }
    
    int lineCount = 0;
    std::string line;
    
    while (std::getline(file, line)) {
        lineCount++;
    }
    
    std::cout << "The file has " << lineCount << " lines." << std::endl;
    
    file.close();
    
    return 0;
}

上述代碼首先打開一個名為"example.txt"的文件,并檢查是否成功打開。然后,使用std::getline函數逐行讀取文件內容,每讀取一行,行數加1。最后,輸出文件的行數。

請確保在使用該代碼時將文件名替換為你要讀取的實際文件名。

0
齐河县| 广安市| 永胜县| 宁安市| 连江县| 泗洪县| 溧阳市| 甘孜| 醴陵市| 济源市| 昌江| 垫江县| 盖州市| 华蓥市| 化隆| 桑植县| 综艺| 松滋市| 鄂州市| 兴仁县| 滦平县| 兴隆县| 沁源县| 安图县| 万荣县| 阜新市| 三都| 武功县| 织金县| 正阳县| 文成县| 来安县| 扎兰屯市| 二连浩特市| 辰溪县| 上栗县| 彩票| 石棉县| 万载县| 道真| 无棣县|