本帖最后由 乔叶旭 于 2012-11-25 03:11 编辑
/*给定一个数组,获取组中的最大值*/
class Demo
{
public static void main(String[] args)
{
int max;
int[] arr = new int[]{5,1,6,4,2,8,9};
max = compare(arr);
System.out.println("max = "+max);
}
public static int compare(int[] arr)
{
int x;
for (x =0;x <arr.length-1 ;x++ )
{
if (arr[x] >= arr[x+1])
{
arr[x+1] = arr[x];
}
else
{
arr[x+1] = arr[x+1];
}
}
return arr[x + 1];
}
}
|