package cn.cp; //找出数组中的最大值 //方法:先假设第一个为最大,然后两两相比取较大者。且利用一个temp来暂存最大值 public class Max { public static void main(String[] args) { new Max().findMax(new int []{2,3,5,2,5,99,-21}); } public void findMax(int a[]){ int tempMax=0; for(int x=0;x<a.length-1;x++){ tempMax=a[x]; if(a[x]>a[x+1]){ tempMax=a[x]; }else{ tempMax=a[x+1]; } } System.out.println("数组的最大值是"+tempMax); } }
时间: 2024-10-24 04:07:02