| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5756 | 石利伟 | 计算分数的浮点数值 | C++ | Accepted | 100 | 0 MS | 260 KB | 132 | 2020-08-15 08:32:39 |
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c; cin>>a>>b; c=a/b; printf("%.9lf",c); return 0; }