| 记录编号 | 89401 | 评测结果 | AAAA | ||
|---|---|---|---|---|---|
| 题目名称 | 1.加法问题 | 最终得分 | 100 | ||
| 用户昵称 | 是否通过 | 通过 | |||
| 代码语言 | C++ | 运行时间 | 0.011 s | ||
| 提交时间 | 2014-03-02 14:56:42 | 内存使用 | 0.24 MiB | ||
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("aplusb.in");
ofstream fout("aplusb.out");
int main()
{
double a,b;
fin>>a>>b;
int c;
c=a+b;
fout<<c;
return 0;
}