| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146882 | 赵奕杰 | 04保留两位小数 | C++ | Wrong Answer | 1 MS | 268 KB | 136 | 2026-02-01 10:58:17 |
#include <bits/stdc++.h> using namespace std; int a,b; int main(){ cin>>a>>b; cout<<fixed<<setprecision(2)<<a/b; return 0; }
------Input------
0 8
------Answer-----
0.00
------Your output-----
0