| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 43965 | zhaohengrui | 甲流疫情死亡率 | C++ | Accepted | 0 MS | 244 KB | 150 | 2024-03-24 12:54:32 |
#include<bits/stdc++.h> using namespace std; int main() { int f,a; cin>>f>>a; cout<<fixed<<setprecision(3)<<a*1.0/f*100<<'%'; return 0; }