Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89481 黎贤超 11向上取整 C++ Accepted 1 MS 268 KB 124 2024-08-25 09:50:36

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ double a; cin>>a; a=a+1; cout<<int(a); return 0; }