| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 83912 | sh25_xuws | 保留3位小数的浮点数 | C++ | Accepted | 0 MS | 244 KB | 145 | 2026-02-04 01:19:05 |
#include <bits/stdc++.h> using namespace std; int main( ) { float f; cin>>f; cout<<fixed<<setprecision(3)<<f; return 0; }