代码
/*
需求:给定一个数组{5,1,6,4,2,8,9}
1,获取数组中的最大值和最小值
*/
class shuzhu
{
public static void main(String[] args)
{
int[] s={5,1,6,4,2,8,9};
int max=bj(s);
System.out.println("max="+max);
}
public static int bj(int[] s)
{
int max=s[0];
for(int x=1;x<s.length;x++)
{
if(s[x]>max)
max=s[x];
}
return max;
}
}
C:\Users\HEN\Desktop |
|