题解 1043: [编程入门]三个数字的排序

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

冒泡法和遍历法

摘要:解题思路:注意事项:参考代码:方法一:冒泡法#include<stdio.h>intmain(){inti,j,n,a[10],temp;&nbsp;&nbsp;n=3;f……

简单代码易理解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){inta,b,c;scanf("%d%d%d",&a,&b,&……

Java-易懂详细代码

摘要:参考代码:import&nbsp;java.util.Scanner;public&nbsp;class&nbsp;Main&nbsp;{&nbsp;&……