????????2 ????????????С
????public class FunctionDemo {
????public static void main(String[] args){
????boolean C = getMax(6??3);//??????????getMax??????
????System.out.println(C);
????}
????public static boolean getMax(int a??int b ){
????return a>b;?????????????????д??????????return a>b?true:false;
????}
????}
????????3?????????
????public class FunctionDemo {
????public static void main(String[] args){
????Loop(6??3);//?????????????????Loop???????????????????????????????????????????????д????
????}
????public static void Loop(int row??int col ){//?????н???????????????з?????????void????????δ?????????????????????????
????for(int x=0;x<row;x++){
????for(int y=0;y<col;y++){
????System.out.print("*");
????}
????System.out.println();
????}
????}
????}
????????????
????1??????????
?????????????????????????????????????????????????????????????????????????е?????????
???????????????????????????????????????
??????????????????????????????е?????0????????????????Щ?????????????????Щ?????????????????????????????
????2?????????
???????1?????????[] ?????? = new ???????[???????????鳤??]
?????????new????????????в????????????壬????洢???????????????????new??????????ɡ?
???????????????????洢3??????????????
????int[] x = new int[3]
????//??new????????????ж???????????????????飬????洢3????????
????// ?κ????????????????????????????????????x??????int???????????????????x????int??????????????????????
????// ???????a???????У?new????????????????У?????????????壬????????????????????????x???????new?????????顣
???????2??int[] x = new int[]{2??6??1}
?????????????????壬????????????е??????????????????????????????????????????????????????????
??????????????????????????
???????1??
????public class FunctionDemo {
????public static void main(String[] args){
????int[] x = new int[3];
????x[0]=1;//?????????????????????????0??
????x[1]=3;
????x[2]=9;
????System.out.println(x[1]);
????}//????????3??
????}
???????2??
????public class FunctionDemo {
????public static void main(String[] args){
????int[] x = new int[1??3??9];
????System.out.println(x[1]);
????}
????}
????3??????????
????????1???????????????????н??????
????public class FunctionDemo {
????public static void main(String[] args){
????int[] arr = new int[]{1??9??6};
????for(int x=0;x<3;x++)
????System.out.println("arr["+x+"]"+"="+arr[x]);
????}
????}
????// ??????????????????????????????????????????length????????? (????????.length)????????????????????