Notice


AWT and SWING will be covered soon !

Monday, September 21, 2009

Random Boolean Number

 

image

 

import java.util.Random;

public class bole
{
    public static void main(String args[])
    {
        Random rand=new Random();
        boolean bool;
        bool=rand.nextBoolean();
        System.out.println(bool);
    }
}

No comments:

Post a Comment