文件提交模版代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
//打开输入文件,输出文件
freopen("test.in","r",stdin);
freopen("test.out","w",stdout);
//正常的逻辑代码
//关闭输入文件输出文件
fclose(stdin);
fclose(stdout);
return 0;
}
程序(面积)考试提交代码:
#include<bits/stdc++.h>
using namespace std;
long long a,b,c;//注意数据范围
int main(){
//打开输入文件,输出文件
freopen("area.in","r",stdin);
freopen("area.out","w",stdout);
cin>>a>>b>>c;
if(a*a>b*c) cout<<"Alice";
else cout<<"Bob";//按照题意输出
fclose(stdin);
fclose(stdout);
return 0;
}
标签:文件,爆零,stdout,int,stdin,fclose,freopen,CSP,复赛
From: https://blog.csdn.net/weixin_60445850/article/details/142323912