码迷,mamicode.com
首页 > 编程语言 > 详细

[20-04-30][Self-test 24]Java SecondMax

时间:2020-04-30 23:13:46      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:一个   class   style   下标   test   string   pac   secondmax   public   

 1 package test_5_1;
 2 
 3 public class SecondMax {
 4 
 5     public static void main(String[] args) {
 6 
 7         /** 给定一个整型数组,数组成员10个,求该数组中第二大的数的下标 */
 8         int[] numArr = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0};
 9         int[] copyNumArr = new int[numArr.length];
10         
11         for (int i = 0; i < copyNumArr.length; i++) {
12             copyNumArr[i] = numArr[i];
13         }
14         
15         
16         for (int i = 0; i < numArr.length - 1; i++) {
17             for (int j = i + 1; j < numArr.length; j++) {
18                 if (numArr[i] < numArr[j]) {
19                     int temp = numArr[i];
20                     numArr[i] = numArr[j];
21                     numArr[j] = temp;
22                 }
23             }
24         }
25         
26         for (int i = 0; i < numArr.length; i++) {
27             if (numArr[i] == copyNumArr[1]) {
28                 System.out.println("第二大的数下标为:" + i);
29                 return;
30             }
31         }
32         
33         
34     }
35 
36 }

 

结果如下:

第二大的数下标为:7

[20-04-30][Self-test 24]Java SecondMax

标签:一个   class   style   下标   test   string   pac   secondmax   public   

原文地址:https://www.cnblogs.com/mirai3usi9/p/12811422.html

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