2025/7/30刷题记录 摘要:解题思路:注意事项:浮点数==浮点数判断会有精度损失所以最后将这个判断放在else中参考代码:#include<stdio.h>#include<math.h>int main…… 题解列表 2025年07月30日 0 点赞 0 评论 27 浏览 评分:0.0
题解 2810: 鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ double n,x,y,q,w; cin>>n>>x>…… 题解列表 2024年01月11日 0 点赞 0 评论 151 浏览 评分:0.0
2810: 鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; double x,y,a,b; …… 题解列表 2024年01月11日 0 点赞 2 评论 92 浏览 评分:0.0
鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#include <complex.h> int main() { int n, x, y[2…… 题解列表 2023年11月10日 0 点赞 0 评论 219 浏览 评分: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 评论 200 浏览 评分:0.0
鸡尾酒疗法C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double x,y; int n,i,m,p,a[100],b[100],c[100]; s…… 题解列表 2024年02月19日 0 点赞 0 评论 200 浏览 评分:0.0
编写题解 2810: 鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:n=int(input())jl,jx=map(int,input().split())j=jx/jllist1=[]for i in range(n-1): gl…… 题解列表 2024年02月28日 0 点赞 0 评论 190 浏览 评分:0.0
编写题解 2810: 鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,a,b; cin>>n; float x,y;…… 题解列表 2024年06月04日 0 点赞 0 评论 1356 浏览 评分:0.0
多组输入的循环方式解决 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>int main() { int n; scanf("%d", &n);…… 题解列表 2023年07月31日 0 点赞 0 评论 214 浏览 评分:0.0
鸡尾酒疗法java 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2023年04月21日 0 点赞 0 评论 178 浏览 评分:0.0