1,if 的格式: 1,if 的格式://第一种: if (a==1){ System.out.println(); }//第二种: if (a==1){ System.out.println();}else {}//第三种: if (a==1){ System.out.println(); }else if (a==0){ }