一维数组求最大值,和三元运算符运算源码
生活随笔
收集整理的這篇文章主要介紹了
一维数组求最大值,和三元运算符运算源码
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
public class Method3 {public static void main(String[] args) {//求三個數的最大數getMax(1, 3, 5);int[] arr = {1, 564, 4, 54, 4565, 455, 6};//求數組最大值getArrayMax(arr);}/*求數組中的最大值*/private static void getArrayMax(int[] arr) {int max = arr[0];for (int i = 1; i < arr.length; i++) {if (max < arr[i]) {max = arr[i];}}System.out.println("數組最大的值是:" + max);}/*定義一個方法,打印三個數之間的最大數*/private static void getMax(int a, int b, int c) {int max = a > b ? a : b;max = max > c ? max : c;System.out.println(max);}
}
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎
總結
以上是生活随笔為你收集整理的一维数组求最大值,和三元运算符运算源码的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 家庭月收入4000元怎么理财?有什么方案
- 下一篇: 1000kW级!中国又一款自研发动机上市