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