Forum: C++ Apr 26th, 2009 |
| Replies: 9 Views: 479 Oooh I like that one, That sounds fun. |
Forum: C++ Apr 25th, 2009 |
| Replies: 14 Views: 908 Best C++ book I've ever used: C++ Programming: From problem analysis to problem design... by Malik.
Latest Edition... |
Forum: C++ Apr 25th, 2009 |
| Replies: 9 Views: 479 One of my favorite projects I worked on was a small RPG type game.
I can't remember it all, but I had classes that were derived from base classes.. these were the fighters. Elvaan, Hume, etc. ... |
Forum: C++ Mar 5th, 2009 |
| Replies: 11 Views: 1,010 can you post your updated code so that I know we're on the same page? |
Forum: C++ Mar 5th, 2009 |
| Replies: 11 Views: 1,010 No problem :)
1) Make sure the while loop is around the entire program... ending right before return 0 ; This way you can do "Try again? (y/n): " and you can change the if statement to if (letter... |
Forum: C++ Mar 5th, 2009 |
| Replies: 11 Views: 1,010 You could change your while condition to while(done) instead of while(!done)... however you then have the problem of when the user gets to the end of the program, it doesn't re-execute the... |
Forum: C++ Mar 5th, 2009 |
| Replies: 11 Views: 1,010 |
Forum: C++ Mar 5th, 2009 |
| Replies: 11 Views: 1,010 I see a couple of things right off, but I haven't had time to get through the whole program.
1) You're not exiting your while loop until they select Done. Your condition is while(!done).
2) ... |
Forum: C++ Mar 5th, 2009 |
| Replies: 11 Views: 1,010 What type of "really odd things"? |
Forum: C++ Sep 23rd, 2007 |
| Replies: 3 Views: 853 You first need to read this (http://www.daniweb.com/forums/announcement8-2.html)
Then you should read this (http://www.daniweb.com/forums/thread78223.html)
After reading, you should try your post... |