Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
44006 | yangtianqi | 甲流疫情死亡率 | C++ | 解答错误 | 0 MS | 244 KB | 284 | 2024-03-24 21:25:46 |
#include<bits/stdc++.h> using namespace std; int main(){ double jlqz=10433; double jlsw=60; //cin>>jlqz>>jlsw; printf("甲流死亡率是%.3lf",jlsw/jlqz*100); cout<<"%"<<endl; cout<<fixed<<setprecision(3)<<"甲流死亡率是"<<jlsw/jlqz*100<<"%"<<endl; }