Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
44005 | yangtianqi | 甲流疫情死亡率 | C++ | Wrong Answer | 0 MS | 252 KB | 273 | 2024-03-24 21:24:53 |
#include<bits/stdc++.h> using namespace std; int main(){ double jlqz; double jlsw; cin>>jlqz>>jlsw; printf("甲流死亡率是%.3lf",jlsw/jlqz*100); cout<<"%"<<endl; cout<<fixed<<setprecision(3)<<"甲流死亡率是"<<jlsw/jlqz*100<<"%"<<endl; }