Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
43897 | wangyuchun | 甲流疫情死亡率 | C++ | Accepted | 0 MS | 244 KB | 145 | 2024-03-23 17:19:07 |
#include<bits/stdc++.h> using namespace std; int main(){ double q,s; cin>>q>>s; cout<<fixed<<setprecision(3)<<s*100.0/q<<"%"; }