| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154283 | 周谨严 | 04保留两位小数 | C++ | Wrong Answer | 0 MS | 272 KB | 180 | 2026-05-30 09:39:15 |
#include<iostream> #include<iomanip> using namespace std; int main(){ double a,b; cin>>a>>b; //保留2位小数输出 printf("%.3lf",a/b); return 0; }
------Input------
0 8
------Answer-----
0.00
------Your output-----
0.000