str.charAt(i); }//可以获取字符串里面的元素 2.java中幂次的用法: Math.pow(a,b);//a的b次方 例如:Math.pow(2,7);//2的7次方 3.将两个数组合并成一个数组: public static int []New(int[] arr1,int[] arr2) { int[] arr3 = new int[arr1.length+arr2.length]; for(int p=0...