Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
43791 | zouqinghua | 浮点数向零舍入 | C++ | Accepted | 1 MS | 248 KB | 112 | 2024-03-23 10:42:00 |
#include<bits/stdc++.h> using namespace std; int main(){ float a; cin>>a; cout<<(int)a; return 0; }