记录编号 | 153021 | 评测结果 | WAAWAWWWWWAAAAWAAAAWWWAAWWWWAWWAAWAWWWAAWWWAWWAWWA | ||
---|---|---|---|---|---|
题目名称 | 加法问题 | 最终得分 | 44 | ||
用户昵称 | forever | 是否通过 | 未通过 | ||
代码语言 | C++ | 运行时间 | 0.028 s | ||
提交时间 | 2015-03-16 16:45:05 | 内存使用 | 13.66 MiB | ||
#include<iostream> #include<cstdlib> #include<cstdio> #include<cmath> using namespace std; int main() { freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdout); float a,b; cin>>a; cin>>b; cout<<floor(a+b); //system("pause"); return 0; }