- import java.lang.Math;
- import java.lang.Thread;
- public class Demo {
- public static void main(String[] args) throws Exception{
- while(true) {
- int i =(int) ((Math.random())*100);
- System.out.print(" " + i);
- //Thread.currentThread().sleep(160);
- }
- }
- }
复制代码
为什么必须加上延时才输出结果,原因? |
|