| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 118311 | 周博涵 | 06小数除法 | C++ | Wrong Answer | 1 MS | 272 KB | 171 | 2025-04-26 18:23:23 |
#include <iostream> #include <cstdio> using namespace std; int main(){ int a,b; double c; cin>>a>>b; c=a*1.0/b; printf("%.5lf",c); }
------Input------
69.1 88
------Answer-----
69.10
------Your output-----
inf