| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 51414 | fengxiaohang | 甲流疫情死亡率 | C++ | Compile Error | 0 MS | 0 KB | 192 | 2024-09-21 17:41:09 |
#include <bits/stdc++.h> using namespace std; int main() { int a,b; cin>>"确诊数:">>a>>"死亡数:">>b; double c=100*(b/a); cout<<fixed<<setprecision(3)<<c%<<endl; }