| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 43775 | wangyuchun | 计算分数的浮点数值 | C++ | Accepted | 0 MS | 248 KB | 121 | 2024-03-23 10:05:24 |
#include<iostream> using namespace std; int main(){ double a,b; cin>>a>>b; printf("%.9lf",a/b); return 0; }