- public class yy {
- public static void main(String[] args){
- int arr[]={3,4,6,7,1,9,5};
- getMax(arr);
- }
- public static void getMax(int arr[])
- {
- int max = 0;
- for(int x = 1;x<arr.length;x++)
- {
- if (arr[x]>arr[max])
- {
- [color=Red] max=x[/color];//这里的位置写错了你
- }
- }
- System.out.println(arr[max]);
- }
- }
复制代码 |