| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 43960 | niyuchen | 甲流疫情死亡率 | C++ | Wrong Answer | 0 MS | 252 KB | 177 | 2024-03-24 12:15:18 |
#include<bits/stdc++.h> using namespace std; int main() { double a,b; cin>>a>>b; printf("甲流死亡率%.3lf%%", b/a*100 ); return 0; }