| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 77261 | sh25_shenpy | 202503GESP一级四舍五入 | C++ | 解答错误 | 1 MS | 252 KB | 232 | 2025-12-21 20:17:54 |
#include <bits/stdc++.h> using namespace std; int main( ) { int n,x; cin>>n; for(int i=1;i<=n;++i){ cin>>x; if(x%10<=4) cout<<x/10<<endl; else cout<<x/10+1<<endl; } return 0; }