public class Test{public static void main(String[] args){ for(int i=0;;i++){ if(i==3){ return; }else{ System.out.println(i); } }} } 相关文章: