| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 47106 | 杨中琦 | 计算分数的浮点数值 | C++ | Accepted | 100 | 0 MS | 252 KB | 149 | 2022-07-14 11:14:44 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; double ans; cin>>a>>b; ans=a*1.0/b; printf("%.9lf",ans); return 0; }