参考代码:
import java.util.Scanner; public class Main{ static int max = 0; static int min = 0; static int maxIndex = 0;// 最大值下标 static int minIndex = 0;// 最小值下标 public static void main(String[] args) { int[] x = new int[10]; input(x); doit(x); output(x); } static void input(int[] x) { Scanner in = new Scanner(System.in); for (int i = 0; i < x.length; i++) { x[i] = in.nextInt(); if (x[i] > max) { max = x[i]; maxIndex = i;//记录最大值下标 } if (i == 0) { min = x[i]; } if (x[i] < min) { min = x[i]; minIndex = i;//记录最小值下标 } } } static void doit(int[] x) { int temp; // 处理特殊情况 if (max == x[0]) { temp = x[x.length - 1]; x[x.length - 1] = max; x[maxIndex] = temp; temp = x[0]; x[0] = min; x[minIndex] = temp; return; } else if (min == x[0]) { temp = x[x.length - 1]; x[x.length - 1] = max; x[maxIndex] = temp; return; } // 假设没有特殊情况 temp = x[x.length - 1]; x[x.length - 1] = max; x[maxIndex] = temp; temp = x[0]; x[0] = min; x[minIndex] = temp; } static void output(int[] x) { for (int i = 0; i < x.length; i++) { System.out.print(x[i]+" "); } } }
0.0分
0 人评分
点我有惊喜!你懂得!浏览:1462 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:770 |
P1002 (C语言代码)浏览:1019 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:633 |
WU-判定字符位置 (C++代码)浏览:1471 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:642 |
打印十字图 (C语言代码)浏览:2820 |
母牛的故事 (C语言代码)浏览:1045 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:513 |
交换Easy (C语言代码)浏览:805 |