2810: 鸡尾酒疗法 (Python版)(简单易懂) 摘要:解题思路:用二维数组参考代码:#输入nn=int(input())#单独输入鸡尾酒实验数据jwj=list(map(int,input().split()))#在数组末尾增设实验结果jwj.appen…… 题解列表 2024年03月17日 0 点赞 2 评论 402 浏览 评分:9.9
题解 2810: 鸡尾酒疗法 摘要:参考代码:a=int(input())b=[]for i in range(1,a+1): x,y=map(int,input().split()) if i<=1: c=y…… 题解列表 2024年03月17日 0 点赞 1 评论 276 浏览 评分:9.9
题解 2810: 鸡尾酒疗法 python版 易懂 摘要:解题思路:注意事项:参考代码:x = 0y = a = []n = int(input())for i in range(n): a.extend(map(int,input().split()…… 题解列表 2024年03月25日 0 点赞 0 评论 222 浏览 评分:9.9
鸡尾酒疗法c++ 摘要:解题思路:注意事项: 样例过了的话,可能是没有换行,加上换行就对了参考代码:#include<bits/stdc++.h>using namespace std;int main(){ …… 题解列表 2023年03月22日 0 点赞 0 评论 356 浏览 评分:9.9
2810: 鸡尾酒疗法 摘要:解题思路:注意采取循环注意事项:参考代码:# 鸡尾酒疗法n=int(input())b=[]avg=0now=0for i in range(1,n+1): x,y=(map(int,input…… 题解列表 2024年09月13日 0 点赞 0 评论 230 浏览 评分:9.9
鸡你太美酒疗法 答案 摘要:解题思路: 这道题很简单,主要是题目又臭又长,为了方便小伙们抄作业,在此我给出了优质解答!!注意事项: 没什么好注意的,硬要说的话精度那里我想了半秒钟。。参考代码: #i…… 题解列表 2023年01月06日 0 点赞 1 评论 744 浏览 评分:9.9
2810: 鸡尾酒疗法(C语言,二维数组的解法) 摘要: #include int main() { int n; scanf("%d",&n); double a[n][2];//这里的数组我设置的是double,因为后面的精度…… 题解列表 2023年07月07日 0 点赞 1 评论 547 浏览 评分:9.5
鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double x,y,d,d1…… 题解列表 2023年11月12日 0 点赞 0 评论 344 浏览 评分:8.5
题解 2810: 鸡尾酒疗法 摘要:解题思路:输入个数与原疗法,再写个for来循环新疗法,再整个if输出就行了注意事项:循环的数量是 个数-1.最后一个if要写else,否则不成立。要用doubled 定义变量。参考代码:#includ…… 题解列表 2024年01月11日 0 点赞 0 评论 381 浏览 评分:7.3
2810: 鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:l = [] n = int(input()) a,b = map(int,input().split()) x = b / a for i in range(0…… 题解列表 2023年02月08日 0 点赞 0 评论 272 浏览 评分:6.7