Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
51630 | 张思存 | 甲流疫情死亡率 | C++ | Accepted | 0 MS | 244 KB | 166 | 2024-09-22 22:18:36 |
#include <bits/stdc++.h> using namespace std; int main() { int a, b; cin >> a >> b; cout <<fixed<<setprecision(3)<<100.0*b/a<<'%'; return 0; }