Sunday, 22 April 2012

Generate random number between 1 to 100


/*Write a program to generate 5 Random nos. between 1 to 100, and it
  should not follow with decimal point.
*/
class RandomDemo{
      public static void main(String args[]){
  
        for(int i=1;i<=5;i++){
              System.out.println((int)(Math.random()*100));
          }
    }

No comments:

Post a Comment