Quote:
quote:Originally posted by Jonmark
Hello,
I'm now reading Beginning Java 2 1.4
|
No, you are not! If you WERE reading Ivor's book, you would have found a short example of how to delay the output on the MS-DOS screen so that it becomes readable. And it works! You just have to add a little piece of code to the end of the main() block:
(check the code example in chapter 1 or 2)
try
{
System.out.println("Press Enter to return");
System.in.read();
}
catch(IOException e)
{
return;
}
cheerZ~!
- franZ