zltzlt 发表于 2020-1-7 21:45:27

C++ 文件读取和输出

在 C++ 中,文件读取和输出有两种方法:

#include <iostream>
using namespace std;

int main() {
        int a, b;
        freopen("in.txt", "r", stdin);
        freopen("out.txt", "w", stdout);
        cin >> a >> b;
        cout << a + b;
        fclose(stdin);
        fclose(stdout);
        return 0;
}

#include <fstream>
using namespace std;

int main() {
        int a, b;
        ifstream fin ("in.txt");
        ofstream fout ("out.txt");
        fin >> a >> b;
        fout << a + b;
        fin.close();
        fout.close();
        return 0;
}
页: [1]
查看完整版本: C++ 文件读取和输出