| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5841 | 曹玹 | 计算分数的浮点数值 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 138 | 2020-08-15 09:08:54 |
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,ans; cin>>a>>b; ans=a/b; printf("%9.lf",ans); return 0; }