信奥赛第二轮文件操作代码案例,“小苹果”题目在文件夹 apple
中:
-
apple.in
和apple.out
分别对应输入文件和输出文件。 -
C++源程序
apple.cpp
文件。
// 爱码岛编程
#include <bits/stdc++.h>
using namespace std;
int main() {
// 文件读写
freopen("apple.in", "r", stdin);
freopen("apple.out", "w", stdout);
/*
选手的解题程序
*/
// 关闭文件
fclose(stdin);
fclose(stdout);
return 0;
}