集册 Java实例教程 从双数组中获取最大值

从双数组中获取最大值

欢马劈雪     最近更新时间:2020-01-02 10:19:05

502
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
从双数组中获取最大


//package com.nowjava;


public class Main {/*from 时代Java公众号*/

    public static void main(String[] argv) throws Exception {

        double[] array = new double[] { 34.45, 35.45, 36.67, 37.78,

                37.0000, 37.1234, 67.2344, 68.34534, 69.87700 };

        System.out.println(getMax(array));

    }


    public static double getMax(double[] array) {

        double max = 0;

        for (int i = 0; i < array.length; i++) {

           
展开阅读全文