题解 2766: 甲流疫情死亡率 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a = 0; int b = 0; double c = 0; scanf("%d %d", &a, …… 题解列表 2023年03月01日 0 点赞 0 评论 243 浏览 评分:0.0
2766题解)(加精验) 摘要:解题思路:8注意事项:k参考代码:public class Main { public static void main(String[] args) { Scanner read…… 题解列表 2023年11月01日 0 点赞 0 评论 228 浏览 评分:0.0
甲流疫情死亡率 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdbool.h>int main(){ int a,b; double c; scanf("%d%d", &a, …… 题解列表 2023年11月05日 0 点赞 0 评论 243 浏览 评分:0.0
编写题解 2766: 甲流疫情死亡率 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年04月12日 0 点赞 0 评论 318 浏览 评分:4.5
甲流疫情死亡率 摘要:解题思路:思考一下,可以得到:死亡数*100/确诊数+“%”=甲流疫情死亡率注意事项:无参考代码:#include <bits/stdc++.h>using namespace std;double …… 题解列表 2023年11月05日 0 点赞 1 评论 314 浏览 评分:6.0
甲流疫情死亡率嘿嘿嘿 摘要:解题思路:嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿注意事项:嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿参考代码:#include<bits/stdc++.h>using namespace std;int main(){ dou…… 题解列表 2023年11月16日 0 点赞 1 评论 260 浏览 评分:6.0
甲流疫情死亡率(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ int a,b; cin>>…… 题解列表 2023年06月03日 0 点赞 0 评论 532 浏览 评分:6.6
2766: 甲流疫情死亡率 摘要:解题思路:注意事项:参考代码:x,y=map(int,input().split()) print(f'{y/x*100:.3f}%')…… 题解列表 2024年03月20日 1 点赞 3 评论 465 浏览 评分:7.3
甲流疫情死亡率 摘要:解题思路:注意事项:因为有百分号,所以应该给结果乘100参考代码:#include<stdio.h>int main(){ int a,b; double t; scanf("%d %d",&a,&b…… 题解列表 2023年01月07日 0 点赞 0 评论 604 浏览 评分:8.0
甲流疫情死亡率 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split())m = (b*100)/aprint("%.3f%%"%m)…… 题解列表 2024年03月13日 0 点赞 0 评论 509 浏览 评分:8.0