Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
54436 | zhangweiran | 浮点数向零舍入 | C++ | Accepted | 1 MS | 248 KB | 121 | 2024-10-28 11:53:19 |
#include<iostream> using namespace std; int main() { double a; cin >> a; int b = a; cout << b; }