Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
6446 张然正 甲流疫情死亡率 C++ 通过 0 MS 248 KB 210 2023-01-23 19:29:36

Tests(1/1):


#include<iostream> #include<iomanip> using namespace std; int main() { int all,dead; cin>>all>>dead; double percent=(double)dead*100.0/all; cout<<fixed<<setprecision(3)<<percent<<"%"; return 0; }


测评信息: