| 比赛 | 普及组水题赛(语言题赛) | 评测结果 | C |
|---|---|---|---|
| 题目名称 | 加法问题 | 最终得分 | 0 |
| 用户昵称 | HCl | 运行时间 | 0.000 s |
| 代码语言 | C++ | 内存使用 | 0.00 MiB |
| 提交时间 | 2014-10-14 17:44:24 | ||
#include<iostream>
#include<cstdio>
#include<math.h>
using namespace std;
int main(){
freopen("aplusb.in","r",stdin); //打开读入文件
freopen("aplusb.out","w",stdout); //打开输出文件
double a,b,c;
cin>>a>>endl;
cin>>b>>endl;
c=a+b;
c=floor(c);
cout<<c<<endl;
/*
你的代码
*/
return 0;
}