Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2078 邓程允 11向上取整 C++ Accepted 0 MS 268 KB 138 2023-12-09 17:07:53

Tests(10/10):


Code:

# include<iostream> # include<math.h> using namespace std; int main(){ float a; cin>>a; cout<<ceil(a); return 0; }