| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 51428 | fengxiaohang | 甲流疫情死亡率 | C++ | Accepted | 0 MS | 244 KB | 185 | 2024-09-21 18:53:29 |
#include<bits/stdc++.h> using namespace std; int main() { double a,b; cin>>a>>b; double c=b/a*100; cout<<fixed<<setprecision(3)<<c<<"%"<<endl; return 0; }