Simple java program which generates five random numbers between 1to 1oo

The below program describes a java program which generates five random numbers between 1to 1oo using Math.random







/*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));

          }

    }

}

0 komentar:

Post a Comment

Related Posts with Thumbnails
GiF Pictures, Images and Photos