题解 2766: 甲流疫情死亡率 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ int a,b; cin>>…… 题解列表 2023年11月04日 0 点赞 0 评论 265 浏览 评分:9.9
2766: 甲流疫情死亡率 摘要:解题思路:注意事项:最后要*100参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ int a,…… 题解列表 2023年11月05日 0 点赞 0 评论 266 浏览 评分:9.9
甲流疫情死亡率 摘要:解题思路:思考一下,可以得到:死亡数*100/确诊数+“%”=甲流疫情死亡率注意事项:无参考代码:#include <bits/stdc++.h>using namespace std;double …… 题解列表 2023年11月05日 0 点赞 1 评论 147 浏览 评分:6.0
甲流疫情死亡率 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdbool.h>int main(){ int a,b; double c; scanf("%d%d", &a, …… 题解列表 2023年11月05日 0 点赞 0 评论 146 浏览 评分:0.0
甲流疫情死亡率嘿嘿嘿 摘要:解题思路:嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿注意事项:嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿嘿参考代码:#include<bits/stdc++.h>using namespace std;int main(){ dou…… 题解列表 2023年11月16日 0 点赞 1 评论 192 浏览 评分:6.0
题解 2766: 甲流疫情死亡率 摘要:解题思路:sum通过static_cast(b)/a*100对进行强制转换就可以得到正确结果啦注意事项:要进行强制转换,要不然你的b/a*100,会出现0的情况。参考代码:#include<iostr…… 题解列表 2023年12月09日 0 点赞 0 评论 287 浏览 评分:9.9
甲流疫情死亡率 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split())m = (b*100)/aprint("%.3f%%"%m)…… 题解列表 2024年03月13日 0 点赞 0 评论 397 浏览 评分:8.0
2766: 甲流疫情死亡率 摘要:解题思路:注意事项:参考代码:x,y=map(int,input().split()) print(f'{y/x*100:.3f}%')…… 题解列表 2024年03月20日 0 点赞 3 评论 291 浏览 评分:7.3
666可以可以可以 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ float x,y,z; char a; scanf("%f%f",&x,&y); z=…… 题解列表 2024年12月02日 1 点赞 2 评论 195 浏览 评分:9.9