| Author |
A command similar to Goto in Java?
|
Dan Bolens
Greenhorn
Joined: Sep 10, 2012
Posts: 25
|
|
Right now my program is supposed to allow users of repeat the program over again or allow them to restart if they make an error. My code is as follows:
If the user enters "N", the program terminates, but how can I make the program start over again if the user says "Y"? I've been looking for something similar to a GOTO statement (which I know you should NEVER use), and I've found the throw and switch commands. I'm a bit confused to how both of these commands work, and how I could fit them into my program. Any help would be much appreciated!
|
 |
Devaka Cooray
Saloon Keeper
Joined: Jul 29, 2008
Posts: 2729
|
|
Use a loop. Something like this would do the trick.
|
Author of ExamLab (Download) - the free mock exam kit for SCJP / OCPJP
Home Page -- Twitter Profile -- JavaRanch FAQ -- How to Ask a Question
|
 |
 |
|
|
subject: A command similar to Goto in Java?
|
|
|