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