import java.util.Random; |
public class Computer { |
public static void main(String[] args) throws InterruptedException { |
for ( int i = 0 ; i < 10 ; i++) { |
for ( int j = 0 ; j < 10 ; j++) { |
Random random = new Random(); |
Thread.sleep( 30 ); |
System.out.print(( int ) random.nextInt( 100 ) + "\t" ); |
} |
System.out.println(); |
} |
} |
} |