Need a bit more information. What is the format of your Java app? Is your app being run from the command-line and where the numbers and text are being printed to the console, or do you have a graphical app where they are they in UI objects like tables and text fields?
it's a simple quess game...
the results (the number you enter-if you quess is too low, or too hight, the choice to play again etc.) are printed in the console... no grafics at all... just text...
it's a simple quess game...
the results (the number you enter-if you quess is too low, or too hight, the choice to play again etc.) are printed in the console... no grafics at all... just text...
Probably in your program you are using System.out.println() to write text to
the console. Instead use FileWriter to write to a file. As a MacRumors fellow
pointed out, take a look at Java I/O docs on SUN's website.