用JAVA对三个数进行比较,没有用排序,就是简单的一一比较 摘要:解题思路:三个数就不排序了,一一考虑所有情况;注意事项:参考代码:import java.util.Scanner;public class Main { public static void …… 题解列表 2021年05月22日 0 点赞 0 评论 461 浏览 评分:6.0
感谢支持,谢谢你们的支持 摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; if(a<…… 题解列表 2023年05月20日 0 点赞 0 评论 316 浏览 评分:6.0
冒泡排序(菜鸟记录) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int arr[3]; for(int i=0;…… 题解列表 2025年10月03日 1 点赞 0 评论 342 浏览 评分:6.0
[编程入门]三个数字的排序 (Python代码) 摘要:```python a, b, c= map(int,input().split()) # 表示的是一次能够输入多个值,依照空格进行分割。 sum = [a,b,c] # 把数值放入列…… 题解列表 2020年03月18日 0 点赞 0 评论 947 浏览 评分:5.5
牛子嗯了之打胶论I-序言 摘要:解题思路:冒泡排序通解 , 把中括号,3,2改一下就是通用答案了注意事项:参考代码:#include <stdio.h>int d[3],i,j,k;int main(){ for (i=0;i…… 题解列表 2023年03月23日 0 点赞 1 评论 251 浏览 评分:4.7
C语言程序设计教程(第三版)课后习题10.1 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void Sort(int a,in…… 题解列表 2017年07月08日 0 点赞 0 评论 1228 浏览 评分:2.0
1043: [编程入门]三个数字的排序 摘要:解题思路:哔哔哔注意事项:bibibi参考代码:#include<iostream>using namespace std;int main(){ int a,b,c,x1,x2,x3,x4; …… 题解列表 2023年02月05日 0 点赞 0 评论 292 浏览 评分:2.0
三元判断解法 摘要:参考代码:#include<stdio.h>int main(){ int a=0, b=0, c=0; int min, mid, max; scanf("%d %d %d&q…… 题解列表 2025年10月27日 2 点赞 2 评论 223 浏览 评分:2.0
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:解题思路: 使用数组,输入三个整数,然后通过冒泡法,进行从小到大的有序排列,最后输出数组。注意题目要求空格隔开。代码如下:#include<stdio.h> #define xx 3 int…… 题解列表 2017年06月16日 2 点赞 0 评论 1493 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (C++代码) 摘要:看看代码就懂了。参考代码:#include <iostream>#include<algorithm>using namespace std;int main(){ int a[3],i; …… 题解列表 2017年07月21日 5 点赞 0 评论 1999 浏览 评分:0.0