if是条件判断,如果不满足条件的话,执行else;如int i =5;if(i==4){//判断是否为4System.out.println(“这个数是:4”);//如果是,输出结果。}else{System.out.println(“这个数是:”+i);//如果不是,输出这个数。}