汽水瓶-递归思想(C++代码) 摘要:解题思路:由简单到复杂!当我们只有1瓶空汽水瓶时,换不了,自己留下1个空瓶;但我们有2个空瓶时,可以让老板借我们一瓶汽水,喝完再用3个空瓶换一瓶还给老板,最后我们留下0个空瓶;有3个时,换1,留1;有…… 题解列表 2024年12月02日 4 点赞 0 评论 476 浏览 评分:10.0
计算边缘之和本比做法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,c,d,e,f,n,m; c=0;d=0;e=0;f=0; int a[101…… 题解列表 2024年12月02日 3 点赞 0 评论 431 浏览 评分:10.0
1062: 二级C语言-公约公倍 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int gys(int a,int b){ if (a == b) { return a; } if (a<b) { return …… 题解列表 2024年12月02日 1 点赞 0 评论 752 浏览 评分:10.0
[编程入门]报数问题 纯c解法 无技巧 摘要:解题思路:只有纯0才有资格呢【狗头】注意事项:)报数足够多(但是时间可能超限)参考代码:#include<stdio.h>int a[101];int main(){ int m,h=0,q=0…… 题解列表 2024年12月03日 0 点赞 0 评论 528 浏览 评分:10.0
int做除法默认floor,如果想还原结果百分比需要*1.0 摘要:解题思路:1.int做除法默认floor,如果想还原结果百分比需要*1.0。如p=1.0*b/a;2.多行数据,如果要用前面一行求固定值,直接输入即可。不用想复杂,又引入数组索引,太麻烦。 cin>>…… 题解列表 2024年12月03日 1 点赞 0 评论 385 浏览 评分:10.0
简易,易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ float a; scanf ("%f",&a); if (a>=0) { …… 题解列表 2024年12月03日 3 点赞 0 评论 927 浏览 评分:10.0
[编程入门]自由下落的距离计算,简单易懂(Java) 摘要:解题思路:小球该次弹起的高度+弹起前下落的高度=该次弹起高度的3倍。注意事项:无参考代码:import java.util.Scanner;public class Main { public …… 题解列表 2024年12月03日 1 点赞 0 评论 635 浏览 评分:10.0
题目意思要理解清楚 摘要:解题思路:注意事项:只动最小值,最大值,第一位,最后一位这四个位置的数字,其他的不动哦。(先找最小值,再找最大值)参考代码:#include<stdio.h>void f1(int a[]){ …… 题解列表 2024年12月04日 3 点赞 0 评论 1039 浏览 评分:10.0
简易,易懂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int a,b,c; for (int i=100; i<1…… 题解列表 2024年12月04日 11 点赞 0 评论 2061 浏览 评分:10.0
最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int m, n; scanf("%d %d", &m, &n); …… 题解列表 2024年12月04日 10 点赞 0 评论 2252 浏览 评分:10.0