码迷,mamicode.com
首页 > 其他好文 > 详细

作业(2)

时间:2017-11-26 22:57:05      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:class   sys   log   作业   col   div   技术   string   static   


 1 package com.aila;
 2 
 3 public class ailale {
 4 
 5         public static void main(String[] args) {
 6             int[] arr = {1,5,6,7,9,8,3,0,2,4};
 7             for(int i = 0;i < arr.length;i++) {
 8                 for(int j = i + 1;j < arr.length;j++) {
 9                     if(arr[i] < arr[j]) {
10                         int temp = arr[i];
11                         arr[i] = arr[j];
12                         arr[j] = temp;
13                     }
14                 }
15 
16             }
17             for(int i : arr)
18                 System.out.println(i);
19         }
20     
21 }

 


 

技术分享图片

 

 1 package com.aila;
 2 
 3 public class ailala {
 4         public static void main(String[] args) {
 5             int[] arr = {1,5,6,7,9,8,3,0,2,4};
 6             for(int i = 0;i < arr.length;i++) {
 7                 for(int j = 0;j < arr.length - 1 -i;j++) {
 8                     if(arr[j] < arr[j + 1]) {
 9                         int temp = arr[j];
10                         arr[j] = arr[j + 1];
11                         arr[j + 1] = temp;
12                     }
13                 }
14 
15             }
16             for(int i : arr)
17                 System.out.println(i);
18         }
19     
20 }

 

技术分享图片

 

作业(2)

标签:class   sys   log   作业   col   div   技术   string   static   

原文地址:http://www.cnblogs.com/a718204806/p/7900679.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!