Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
102173 | 秦浩然 | 11向上取整 | C++ | Wrong Answer | 0 MS | 264 KB | 146 | 2024-12-21 12:29:31 |
#include<iostream> using namespace std; int main(){ double a,b; cin>>a>>b; if(b>a){ cout<<b; } return 0; }
------Input------
414.6
------Answer-----
415
------Your output-----