记录编号 89401 评测结果 AAAA
题目名称 加法问题 最终得分 100
用户昵称 Gravatarwoca 是否通过 通过
代码语言 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;
}