比赛 | 假期找点事儿做题吧 | 评测结果 | AAAAWA |
---|---|---|---|
题目名称 | 加法问题 | 最终得分 | 83 |
用户昵称 | swttc | 运行时间 | 0.001 s |
代码语言 | C++ | 内存使用 | 0.29 MiB |
提交时间 | 2017-06-09 18:52:01 | ||
#include<cstdio> using namespace std; double a,b; int c; int main() { freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdout); scanf("%lf%lf",&a,&b); c=int(a+b); printf("%d",c); fclose(stdin); fclose(stdout); return 0; }