| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 137145 | 林汐 | 求分数精确值1 | C++ | Wrong Answer | 0 | 0 MS | 240 KB | 169 | 2024-03-09 17:36:23 |
#include<bits/stdc++.h> #include<iomanip> using namespace std; int main(){ double a,b,c; cin>>a>>b; c=a/b; cout<<fixed<<setprecision(100)<<c; return 0; }