为什么结果是timeout
public class HelloWorld{ public static void main(String[] args){ int num = 999; int count = 0; for(;;){ count++; num = num / 10; while(num>=0) System.out.println("它是个"+count+"位的数!"); } } }
public class HelloWorld{ public static void main(String[] args){ int num = 999; int count = 0; for(;;){ count++; num = num / 10; while(num>=0) System.out.println("它是个"+count+"位的数!"); } } }
2018-04-09
举报