Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
43856 | wangyuchun | 甲流疫情死亡率 | C++ | Wrong Answer | 0 MS | 244 KB | 144 | 2024-03-23 12:53:53 |
#include<bits/stdc++.h> using namespace std; int main(){ int q,s; cin>>q>>s; cout<<fixed<<setprecision(5)<<s/q*100; return 0; }