Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
33024 | 张淳睿 | 甲流疫情死亡率 | C++ | Accepted | 0 MS | 252 KB | 162 | 2023-12-04 20:54:55 |
#include <bits/stdc++.h> using namespace std; int main() { double x, y; cin >> x >> y; cout << setprecision(3) << 100*y / x << "%"; return 0; }