0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-24 02:48:48 +00:00

B2012 甲流疫情死亡率

R53229760
This commit is contained in:
Baoshuo Ren 2021-07-15 19:05:27 +08:00 committed by Baoshuo Ren
parent 0f4f4b00b4
commit fc6f52a784
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
double a, b;
cin >> a >> b;
cout << fixed << setprecision(3) << b / a * 100 << '%' << endl;
return 0;
}