记录编号 491110 评测结果 WAAWAWWWWWAAAAWAAAAWWWAAWWWWAWWAAWAWWWAAWWWAWWAWWA
题目名称 加法问题 最终得分 44
用户昵称 Gravatar吴文姿 是否通过 未通过
代码语言 C++ 运行时间 0.027 s
提交时间 2018-03-14 19:37:55 内存使用 13.66 MiB
显示代码纯文本
# include<iostream>
# include<cstdio>
# include<cmath>
using namespace std;
int main(){
	freopen("aplusb.in","r",stdin);
	freopen("aplusb.out","w",stdout);
	float a,b;
	cin>>a>>b;
	cout<<floor(a+b)<<endl;
	fclose(stdin);
	fclose(stdout);
	return 0;
}