ifstream

阅读量: 283 编辑

ifstream 读取txt文件内容

// 爱码岛编程
#include <bits/stdc++.h>
using namespace std;

int main() {
    ifstream fin;
    string line;

    fin.open("1.txt", ios::in);
    
    // 遇到空格或换行为一次输入 
    for (int i = 0; i < 2; i++) {
        fin >> line;
        cout << line << endl;
    }

    cout << endl;

    return 0;
}
爱码岛编程公众号
试卷资料
爱码岛编程小程序
在线刷题
苏ICP备13052010号
©2023 南京匠成信息科技有限公司