Guess Number Game (Problem)

Please support our Java advertiser: Programming Forums - DaniWeb Sister Site
Reply

Join Date: Nov 2006
Posts: 1
Reputation: JesQi is an unknown quantity at this point 
Solved Threads: 0
JesQi JesQi is offline Offline
Newbie Poster

Guess Number Game (Problem)

 
0
  #1
Nov 17th, 2006
HI, i'm new in JAVA
i creating a "GUESS NUMBER GAME"..
which allow user 3 changes to guess..
i'm new to java so i need a simple coding...
i has done the part but i dun wan to combine all function in main...
this is my problem, i hope u can solve to me...
this is my coding... pls look forward it..

import javax.swing.JOptionPane;
public class game1
{
public static void main (String args[])
{
int rollOfDice, num, x;
String output,userNum;

//generate a random number betwwen 1 and 6 inclusive
rollOfDice = (int)(Math.random()*6)+1;
output = "You rolled a "+rollOfDice;

//print msg
JOptionPane.showMessageDialog(null,output,"Random Number Demo",JOptionPane.INFORMATION_MESSAGE);



do
{
userNum = JOptionPane.showInputDialog ("Please Guess the number");
num = Integer.parseInt(userNum);

if (num == rollOfDice)
{
output = "Congratulation";
JOptionPane.showMessageDialog(null,output,"Win",JOptionPane.INFORMATION_MESSAGE);
}
else
{
for (x=1;x>3;x++)
{
output = "Try again";
JOptionPane.showMessageDialog(null,output,"Lose",JOptionPane.INFORMATION_MESSAGE);
//output = "You are lose";
//JOptionPane.showMessageDialog(null,output,"Lose",JOptionPane.INFORMATION_MESSAGE);
}
}
}while(num != rollOfDice);

System.exit(0);
}
}
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 5,266
Reputation: iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold iamthwee is a splendid one to behold 
Solved Threads: 377
Featured Poster
iamthwee's Avatar
iamthwee iamthwee is offline Offline
Posting Expert

Re: Guess Number Game (Problem)

 
0
  #2
Nov 17th, 2006
Have you looked at examples of functions and how they are structured?
*Voted best profile in the world*
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Java Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC