Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
32618 | chenyifei | 保留3位小数的浮点数 | C++ | Accepted | 0 MS | 252 KB | 123 | 2023-12-02 10:41:28 |
#include<iostream> using namespace std; int main() { float num1; cin>>num1; printf("%.3f",num1); return 0; }