Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
43784 zouqinghua 甲流疫情死亡率 C++ 通过 1 MS 252 KB 238 2024-03-23 10:36:09

Tests(1/1):


#include <iostream> using namespace std; int main() { int a; // 确诊数 int b; // 死亡数 cin >> a; cin >> b; printf("%.3f%%", 100.0 * b / a); // 最后连续两个%代表输出一个% return 0; }


测评信息: