int做除法默认floor,如果想还原结果百分比需要*1.0 摘要:解题思路:1.int做除法默认floor,如果想还原结果百分比需要*1.0。如p=1.0*b/a;2.多行数据,如果要用前面一行求固定值,直接输入即可。不用想复杂,又引入数组索引,太麻烦。 cin>>…… 题解列表 2024年12月03日 1 点赞 0 评论 370 浏览 评分:10.0
2810: 鸡尾酒疗法 摘要:解题思路:比较两种疗法的治愈率。注意事项:唯一的难点就是解决输入输出混合的问题,如果按照常规写法输入输出会混合在一起。这时就需要一个容器来存储每次循环的结果--数组。但是运用数组要明确有效索引,不然会…… 题解列表 2025年11月17日 1 点赞 0 评论 288 浏览 评分:10.0
题解 2810: 鸡尾酒疗法 python版 易懂 摘要:解题思路:注意事项:参考代码:x = 0y = a = []n = int(input())for i in range(n): a.extend(map(int,input().split()…… 题解列表 2024年03月25日 0 点赞 0 评论 472 浏览 评分:9.9
写题解 2810: 鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int n;double x,y,d,d1;cin>>n>>x…… 题解列表 2024年01月11日 0 点赞 0 评论 371 浏览 评分:9.9
2810: 鸡尾酒疗法 摘要:解题思路:本题主要考察对循环的熟练度和对题干的理解力注意事项:循环中i的循环次数为:i<=n-1,不是n better,worse,same不要拼错(别问我为什么要写这个,…… 题解列表 2024年01月11日 0 点赞 0 评论 499 浏览 评分:9.9
2810: 鸡尾酒疗法 摘要:解题思路:注意采取循环注意事项:参考代码:# 鸡尾酒疗法n=int(input())b=[]avg=0now=0for i in range(1,n+1): x,y=(map(int,input…… 题解列表 2024年09月13日 1 点赞 0 评论 525 浏览 评分:9.9
题解 2810: 鸡尾酒疗法(精心制作,给个好评吧) 摘要:原题链接:鸡尾酒疗法解题思路:本题主要考察对循环的熟练度和对题干的理解力注意事项:循环中i的循环次数为:i<=n-1,不是n better,worse,same不要拼错(别…… 题解列表 2024年01月11日 1 点赞 0 评论 666 浏览 评分:9.9
鸡尾酒疗法(java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年11月08日 0 点赞 0 评论 396 浏览 评分:9.9
鸡尾酒疗法题解-浮点数运算 摘要:#### 参考代码 ``` #include int main() { int n; double x, y; scanf("%d%lf%lf", &n, &x, &y); …… 题解列表 2023年10月30日 0 点赞 0 评论 517 浏览 评分:9.9
鸡尾酒疗法(注意审题) 摘要:注意事项: 第一行是原治疗法的效率,后面几行治疗的效率都同第一行的作比较 只要理解了题目,就好做了 参考代码: ```c #include int main() { int n; …… 题解列表 2023年09月09日 0 点赞 0 评论 670 浏览 评分:9.9