DINO_CH

Untitled

Jun 30th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. package omega01;
  2. import java.util.*;
  3.  
  4. public class Loteria {
  5.     public static void main(String[] args) {
  6.    
  7.     Random loto = new Random();
  8.    
  9.      int[] B = new int [10];
  10.      
  11.     for(int i=0;i < B.length;i++){
  12.        
  13.         B[i]=loto.nextInt(B.length);
  14.         System.out.println(B);
  15.     }
  16.    
  17.    
  18.  
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment