//遍历数组方法
public static void bianli(int[] arr){
for(int x=0;x<arr.length;x++){
if(x == arr.length-1){
System.out.println(arr[x]);
}else{
System.out.print(arr[x]+", ");
}
}
}
//求数组最大值方法
public static int getMax(int[] arr){
int max = arr[0];
for(int x=1;x<arr.length;x++){
if(max<arr[x]){
max =arr[x];
}
}
return max;
}
//逆序数组方法
public static void nixu(int[] arr){
for(int x=0;x<arr.length/2;x++){
int temp = arr[x];
arr[x] = arr[arr.length-1-x];
arr[arr.length-1-x] = temp;
}
}
//根据元素查找索引方法
public static int suoyin(int[] arr,int sy){
for(int x=0;x<arr.length;x++){
if(arr[x] == sy){
return x;
}
}
return -1;
}
}
//二维数组遍历
public static void bianli(int[][] arr){
for(int x=0;x<arr.length;x++){
for(int y=0;y<arr[x].length;y++){
System.out.print(arr[x][y]+" ");
}
System.out.println();
}
}
*/
/*
输出一个数字图形:
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 10
...
|
|