Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1046 王彦皓 11向上取整 C++ Accepted 0 MS 268 KB 120 2023-06-24 15:38:24

Tests(10/10):


Code:

#include <iostream> using namespace std; int main(){ int h; cin>>h; h=(1-h%1)+h; cout<<h<<endl; return 0; }