题解 1219: 数列排序

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

筛选

数列排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:# include <stdio.h># include <malloc.h>void destroy (int **p , int n);int main (void)……

数列排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i, n, l, x, min; int num[20]; scanf("%d", &n); ……

数列排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[10],i,j,k; scanf("%d",&n); while(n--) {  int b[1……

数列排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j; int a[9],t; scanf("%d",&n); while(n--) { t=0……

数列排序 (C语言代码)

摘要:#include <stdio.h>int main(){     int i,j,k,N;     int a[9],b[9];     while(scanf("%d",&N)!=EOF)    ……

数列排序 (C语言代码)

摘要:解题思路:用两个子数组分别保存大数和小数注意事项:打印小数数组时倒着打印参考代码:#include<stdio.h>int main(){ int N,num[9]; int i,less[9],bi……

数列排序 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[]ages){ ……
优质题解

数列排序 (Java代码)

摘要:解题思路:以第一项为基础,每读入一个数,就和第一项作比较,如果比第一项大,就直接保存在数组中,如果比第一项小就将数组中已有的数字向后移动一位,把当前读入的数放在第一位;注意事项:参考代码:import……