| 记录编号 | 550193 | 评测结果 | EEEEEEEEEE | ||
|---|---|---|---|---|---|
| 题目名称 | 1.加法问题 | 最终得分 | 0 | ||
| 用户昵称 | 是否通过 | 未通过 | |||
| 代码语言 | C++ | 运行时间 | 1.189 s | ||
| 提交时间 | 2020-03-04 15:10:52 | 内存使用 | 13.66 MiB | ||
#include<iostream>
#include<fstream>
using namespace std;
int main(){
ifstream fin("aplusb.in");
ofstream fout("aplusb.out");
double n[2];
int a,b,c;
fin>>n[1]>>n[2];
c=n[1]+n[2];
fout<<c;
return 0;
}