Guess my Number

From CompSciWiki
Revision as of 16:29, 7 April 2010 by TimC (Talk | contribs)

Jump to: navigation, search

Back to the Program-A-Day homepage

Problem

Generate a program where the computer chooses a random number between 1 and 10 and the user is continuously asked to guess it until they are correct.

You will need to review [JOptionPane for input and ouput]

 

While and For Loops

Wiki loops03.jpg

Solution

To get a random number in java you need to include the following statement at the beginning of your source code.
import java.util.Random;

Code

Solution Code

Back to the Program-A-Day homepage