陈sir


私信TA

用户名:dotcpp0751441

访问量:44

签 名:

等  级
排  名 16584
经  验 800
参赛次数 1
文章发表 2
年  龄 0
在职情况 学生
学  校 长江大学文理学院
专  业

  自我简介:

TA的其他文章


import java.util.Scanner;

public class JavaTestBank_45 {
   public static void main(String[] args) {
       Scanner sc = new Scanner(System.in);
       int[] a = new int[10];
       for (int i = 0; i < 10; i++) {
           a[i] = sc.nextInt();
       }
       int m = 1;
       int min = a[1];
       for (int j = 2; j < a.length; j++) {
           if (a[j] < min) {
               min = a[j];
               m = j;
           }
       }
       if (min < a[0]) {
           int temp = a[m];
           a[m] = a[0];
           a[0] = temp;
       }
       int n = 1;
       int max = a[1];
       for (int j = 2; j < a.length - 1; j++) {
           if (a[j] > max) {
               max = a[j];
               n = j;
           }
       }
       if (max > a[a.length - 1]) {
           int temp = a[n];
           a[n] = a[a.length - 1];
           a[a.length - 1] = temp;
       }
       for (int x : a) {
           System.out.print(x + " ");
       }
   }
}

 

0.0分

1 人评分

  评论区

  • «
  • »