Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~468 People Reached
Favorite Tags

3 Posted Topics

Member Avatar for Xiek

use this [CODE]while((transaction != "Q") && (transaction != "q")){ . . . }[/CODE] or this [CODE]while(true){ . . if(transaction.equalsIgnoreCase("q")){ return; } }[/CODE] they both do the same thing: they exit the loop when transaction changes to Q or q

Member Avatar for Xiek
0
83
Member Avatar for darkwing229
Member Avatar for zackzak

I am creating a game like the text-based game Zorg using a console program. However, I don't know how to create a save file. How can I do this using the player's name to restore the variables I need?

Member Avatar for zackzak
0
152

The End.