public class Test {
    public Test() {
    }
   
    public static void main(String [] args){
     boolean first = true;
     int count = 0 ;
     for(int i=0;i<8;i++){
      if(!first&&count>3){
       System.out.println(count);
      }else{
       first = false;
      }
     }
     
    }
}
 
没有运行结果 无输出