提交时间:2024-09-21 17:41:09

运行 ID: 51414

#include <bits/stdc++.h> using namespace std; int main() { int a,b; cin>>"确诊数:">>a>>"死亡数:">>b; double c=100*(b/a); cout<<fixed<<setprecision(3)<<c%<<endl; }