| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5781 | 朱彦宇 | 计算分数的浮点数值 | C++ | Compile Error | 0 | 0 MS | 0 KB | 136 | 2020-08-15 08:40:58 |
#include<bits/stdc++.h> using namespace; int main(){ double a, b, ans; cin>>a>>b; ans=a/b printf("%.9lf", ans); return 0; }