记录编号 | 142115 | 评测结果 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 加法问题 | 最终得分 | 100 | ||
用户昵称 | 晖灰熊 | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.026 s | ||
提交时间 | 2014-12-06 13:38:31 | 内存使用 | 13.66 MiB | ||
#include <iostream> #include <algorithm> #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <queue> using namespace std; int main(){ freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdout); float a,b; cin>>a>>b; printf("%.0f",a+b); fclose(stdin); fclose(stdout); return 0; }