提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
从双数组中获取最大
//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++) {