You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
288 B

public class Jb23_ArrToolDemo
{
public static void main(String[] args)
{
int[] arr = {0,1,32,5,8,4,9};
int index = Jb23_ArrTool.getIndex(arr,43); //<2F><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>43<34><33><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>еĽDZ<C4BD>
System.out.println(index);
int max = getMax(arr);
System.out.println("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ<EFBFBD><D6B5>"+max);
}
}