blob: e0ff106f5cb570ecbb9216c020b2986fd9338011 (
plain)
1
2
3
4
5
6
7
8
9
10
|
public class TestI {
public static void main(String[] args) throws InterruptedException {
int i =1;
while(i<10){
System.out.println(++i);
System.out.println(i);
Thread.sleep(1000000);
}
}
}
|