比赛 | 20130225(初二) | 评测结果 | AAAAA |
---|---|---|---|
题目名称 | BPlusA | 最终得分 | 100 |
用户昵称 | ok | 运行时间 | 0.002 s |
代码语言 | C++ | 内存使用 | 3.15 MiB |
提交时间 | 2013-02-25 19:25:46 | ||
#include <fstream> using namespace std; int main() { double n; ifstream input("bplusa.in"); ofstream output("bplusa.out"); input>>n; output<<'0'<<' '<<(int)n<<endl; input.close(); output.close(); return 0; }