Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
43819 | wangyuchun | 浮点数向零舍入 | C++ | Accepted | 0 MS | 248 KB | 109 | 2024-03-23 11:27:27 |
#include<iostream> using namespace std; int main(){ double a; cin>>a; cout<<(int)a; return 0; }