zoukankan      html  css  js  c++  java
  • Java经典编程题50道之三十五

    有一个数组,将其最大的元素与第一个元素交换,最小的元素与最后一个元素交换,然后输出数组。

    public class Example35 {
        public static void main(String[] args) {
            int[] a = { 5, 7, 6, 1, 9, 4, 2, 3, 8 };
            convertElement(a);
        }

        public static void convertElement(int[] a) {
            System.out.print("测试数组为:");
            for (int r : a) {
                System.out.print(r + " ");
            }
            int max = 0;
            for (int i = 0; i < a.length; i++) {
                if (a[i] > a[max]) {
                    max = i;
                }
            }
            int temp = a[0];
            a[0] = a[max];
            a[max] = temp;
            int min = 0;
            for (int i = 0; i < a.length; i++) {
                if (a[i] < a[min]) {
                    min = i;
                }
            }
            int temp1 = a[min];
            a[min] = a[a.length - 1];
            a[a.length - 1] = temp1;
            System.out.print(" 变换后的数组为:");
            for (int r : a) {
                System.out.print(r + " ");
            }
        }
    }

  • 相关阅读:
    体温上报APP2.2(第二阶段总结)
    体温上报APP2.1
    体温上报APP2.0
    体温上报APP1.2
    体温上报APP1.1
    个人作业——体温上报APP
    安卓学习14(ViewPager)
    安卓学习13(RecyclerView)
    安卓学习12(ListView)
    javascript获得给定日期的前一天的日期
  • 原文地址:https://www.cnblogs.com/qubo520/p/6955815.html
Copyright © 2011-2022 走看看