Mega Code Archive

 
Categories / Java / Development Class
 

Random numbers between 1 and 100

public class Main {   public static void main(String[] args) {     for(int i=0; i < 5 ; i++){       System.out.println("Random Number ["+ (i+1) + "] : " + (int)(Math.random()*100));     }   } }