写题解 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 评论 169 浏览 评分:9.9
鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double x,y,d,d1…… 题解列表 2023年11月12日 0 点赞 0 评论 344 浏览 评分:8.5
鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#include <complex.h> int main() { int n, x, y[2…… 题解列表 2023年11月10日 0 点赞 0 评论 118 浏览 评分:0.0
题解 2810: 鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a; double x,c,y,f; cin>>a;…… 题解列表 2023年11月08日 0 点赞 0 评论 161 浏览 评分:0.0
鸡尾酒疗法(java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年11月08日 0 点赞 0 评论 170 浏览 评分:9.9
鸡尾酒疗法题解-浮点数运算 摘要:#### 参考代码 ``` #include int main() { int n; double x, y; scanf("%d%lf%lf", &n, &x, &y); …… 题解列表 2023年10月30日 0 点赞 0 评论 274 浏览 评分:9.9
鸡尾酒疗法(注意审题) 摘要:注意事项: 第一行是原治疗法的效率,后面几行治疗的效率都同第一行的作比较 只要理解了题目,就好做了 参考代码: ```c #include int main() { int n; …… 题解列表 2023年09月09日 0 点赞 0 评论 441 浏览 评分:9.9
多组输入的循环方式解决 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>int main() { int n; scanf("%d", &n);…… 题解列表 2023年07月31日 0 点赞 0 评论 167 浏览 评分:0.0
2810: 鸡尾酒疗法(C语言,二维数组的解法) 摘要: #include int main() { int n; scanf("%d",&n); double a[n][2];//这里的数组我设置的是double,因为后面的精度…… 题解列表 2023年07月07日 0 点赞 1 评论 547 浏览 评分:9.5
鸡尾酒疗法java 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年04月21日 0 点赞 0 评论 141 浏览 评分:0.0