Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
51420 | fengxiaohang | 甲流疫情死亡率 | C++ | Wrong Answer | 0 MS | 252 KB | 160 | 2024-09-21 18:37:05 |
#include <bits/stdc++.h> using namespace std; int main() { double a,b; cin>>a>>b; double c=a/b; cout<<fixed<<setprecision(5)<<c<<endl; }