| 记录编号 | 336363 | 评测结果 | WWWWAWWWWWWWWWAWWWWWWWAWWWWWWWAWWWWWWWWWWWWWWWWWWW | ||
|---|---|---|---|---|---|
| 题目名称 | 1.加法问题 | 最终得分 | 8 | ||
| 用户昵称 | 是否通过 | 未通过 | |||
| 代码语言 | C++ | 运行时间 | 0.026 s | ||
| 提交时间 | 2016-11-03 08:07:48 | 内存使用 | 13.66 MiB | ||
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
double a,b;
freopen("aplusb.in","r",stdin);
freopen("aplusb.out","w",stdout);
cin>>a>>b;
cout<<a+b;
fclose(stdin);
fclose(stdout);
return 0;
};