记录编号 | 527438 | 评测结果 | AAAWAA | ||
---|---|---|---|---|---|
题目名称 | 加法问题 | 最终得分 | 83 | ||
用户昵称 | ONCE AGAIN | 是否通过 | 未通过 | ||
代码语言 | C++ | 运行时间 | 0.002 s | ||
提交时间 | 2019-02-16 12:17:30 | 内存使用 | 3.16 MiB | ||
#include<iostream> #include<cstdio> #include<cstring> #include<string> using namespace std; int main() { freopen("aplusb.in","r",stdin); freopen("aplusb.out","w",stdout); float a,b; scanf("%f%f",&a,&b); printf("%d",(int)(a+b)); fclose(stdin); fclose(stdout); return 0; }