第二轮代码模板

阅读量: 106 编辑

信奥赛第二轮文件操作代码案例,“小苹果”题目在文件夹 apple 中:

  • apple.inapple.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;
}

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