数列排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:# include <stdio.h># include <malloc.h>void destroy (int **p , int n);int main (void)…… 题解列表 2017年08月29日 0 点赞 0 评论 952 浏览 评分:0.0
数列排序 (C语言代码) 摘要:#include <stdio.h> int main() { int n,nums[9],i,o; scanf("%d",&n); for (i=1;i<=n;i++) { …… 题解列表 2017年10月26日 0 点赞 0 评论 796 浏览 评分:0.0
数列排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i, n, l, x, min; int num[20]; scanf("%d", &n); …… 题解列表 2017年12月01日 0 点赞 0 评论 674 浏览 评分:0.0
数列排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[10],i,j,k; scanf("%d",&n); while(n--) { int b[1…… 题解列表 2017年12月12日 1 点赞 0 评论 1125 浏览 评分:8.0
数列排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j; int a[9],t; scanf("%d",&n); while(n--) { t=0…… 题解列表 2018年02月10日 0 点赞 0 评论 793 浏览 评分:0.0
数列排序 (C语言代码) 摘要:参考代码:#define LEN 9 #include <stdio.h> void print(int a[]); void sort_2(int a[]); int main(vo…… 题解列表 2018年02月16日 0 点赞 0 评论 718 浏览 评分:0.0
数列排序 (C语言代码) 摘要:#include <stdio.h>int main(){ int i,j,k,N; int a[9],b[9]; while(scanf("%d",&N)!=EOF) …… 题解列表 2018年02月26日 0 点赞 0 评论 543 浏览 评分:0.0
数列排序 (C语言代码) 摘要:解题思路:用两个子数组分别保存大数和小数注意事项:打印小数数组时倒着打印参考代码:#include<stdio.h>int main(){ int N,num[9]; int i,less[9],bi…… 题解列表 2018年03月01日 0 点赞 1 评论 743 浏览 评分:0.0
数列排序 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[]ages){ …… 题解列表 2018年04月19日 0 点赞 0 评论 788 浏览 评分:0.0
优质题解 数列排序 (Java代码) 摘要:解题思路:以第一项为基础,每读入一个数,就和第一项作比较,如果比第一项大,就直接保存在数组中,如果比第一项小就将数组中已有的数字向后移动一位,把当前读入的数放在第一位;注意事项:参考代码:import…… 题解列表 2018年05月08日 4 点赞 0 评论 1142 浏览 评分:4.4