记录编号 11029 评测结果 WWWWAWWWWWWWWWAWWWWWWWAWWWWWWWAWWWWWWWWWWWWWWWWWWW
题目名称 加法问题 最终得分 8
用户昵称 Gravatar苏轼 是否通过 未通过
代码语言 C++ 运行时间 0.029 s
提交时间 2009-07-14 11:33:05 内存使用 13.66 MiB
显示代码纯文本
#include <iostream>   
#include <fstream>   
  
using namespace std;
  
int main()   
{   
    ofstream fout ("aplusb.out");   
    ifstream fin ("aplusb.in");   
    float a, b;   
    fin >> a >> b;   
    fout << a+b << endl;   
    fin.close();   
    fout.close();   
    return 0;   
}