记录编号 | 459503 | 评测结果 | AWAWWAAAAAAAWAAWWWWAWWWWAWAAWWWAAWAWWWWWAAWWWWWAAW | ||
---|---|---|---|---|---|
题目名称 | 加法问题 | 最终得分 | 44 | ||
用户昵称 | RTSAK8 | 是否通过 | 未通过 | ||
代码语言 | C++ | 运行时间 | 0.026 s | ||
提交时间 | 2017-10-13 10:18:57 | 内存使用 | 13.66 MiB | ||
#include<iostream> #include<cstdio> using namespace std; int main() { freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdout); double EX,FGO,SSR; cin>>EX>>FGO; SSR=EX+FGO+0.001; SSR=(int)SSR; cout<<SSR; return 0; }