记录编号 | 439333 | 评测结果 | AWAWAAWWAW | ||
---|---|---|---|---|---|
题目名称 | 加法问题 | 最终得分 | 50 | ||
用户昵称 | AAAAAAAAAA | 是否通过 | 未通过 | ||
代码语言 | C++ | 运行时间 | 0.000 s | ||
提交时间 | 2017-08-19 21:37:14 | 内存使用 | 0.00 MiB | ||
#include<iostream> #include<fstream> #include<iomanip> #define eps 1e-10 using namespace std; 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("%d",int(c+eps)); return 0; }