记录编号 | 223316 | 评测结果 | AAAA | ||
---|---|---|---|---|---|
题目名称 | 加法问题 | 最终得分 | 100 | ||
用户昵称 | ztx | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.001 s | ||
提交时间 | 2016-02-09 16:35:06 | 内存使用 | 0.29 MiB | ||
#include<stdio.h> int main() { freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdout); double a,b,c; scanf("%lf%lf",&a,&b); c=a+b; printf("%.0lf",c); fclose(stdin); fclose(stdout); /* freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdin); double a,b; int c; scanf("%lf%lf",&a,&b); c=a+b; printf("%d",c); fclose(stdin); fclose(stdout);*/ return 0; }