鸡尾酒疗法C语言解法 摘要:解题思路:数组思想注意事项:参考代码:#include<stdio.h>int ans[10001];int main(){ int n,i,y1,y2; int a,b; floa…… 题解列表 2022年12月11日 0 点赞 0 评论 482 浏览 评分:6.5
数组+循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; double x,y[100],j,k; scanf("%d",&n); scanf("%lf %…… 题解列表 2022年12月30日 0 点赞 0 评论 176 浏览 评分:6.0
鸡你太美酒疗法 答案 摘要:解题思路: 这道题很简单,主要是题目又臭又长,为了方便小伙们抄作业,在此我给出了优质解答!!注意事项: 没什么好注意的,硬要说的话精度那里我想了半秒钟。。参考代码: #i…… 题解列表 2023年01月06日 0 点赞 1 评论 673 浏览 评分:9.9
鸡尾酒疗法,简单方法 摘要:解题思路:注意事项:用整形数据进行除法是要在前面乘以1.0。将其换成浮点型的数据也是可以的。参考代码:#include<stdio.h>int main(){ int n,i,a,b,x,y; …… 题解列表 2023年01月07日 0 点赞 0 评论 270 浏览 评分:2.6
看到那么多字就头晕,细下心来读出数学公式即可 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; int a[100][2]; //定义个二维数组,存放每组数据 scanf("…… 题解列表 2023年01月19日 0 点赞 0 评论 124 浏览 评分:0.0
2810: 鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:l = [] n = int(input()) a,b = map(int,input().split()) x = b / a for i in range(0…… 题解列表 2023年02月08日 0 点赞 0 评论 219 浏览 评分:6.7
鸡尾酒疗法c++ 摘要:解题思路:注意事项: 样例过了的话,可能是没有换行,加上换行就对了参考代码:#include<bits/stdc++.h>using namespace std;int main(){ …… 题解列表 2023年03月22日 0 点赞 0 评论 280 浏览 评分:9.9
2810: 鸡尾酒疗法 顺着思路走吧,先不管其他的了 摘要:#include <iostream> using namespace std; int main(){ int n; cin >>n; //第一行为整数n( 1 < n <= 2…… 题解列表 2023年04月11日 0 点赞 0 评论 111 浏览 评分:0.0
鸡尾酒疗法java 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年04月21日 0 点赞 0 评论 89 浏览 评分:0.0
2810: 鸡尾酒疗法(C语言,二维数组的解法) 摘要: #include int main() { int n; scanf("%d",&n); double a[n][2];//这里的数组我设置的是double,因为后面的精度…… 题解列表 2023年07月07日 0 点赞 1 评论 480 浏览 评分:9.5