December 5th, 2010 10:32 PM
Thank you so much! I'll post a new thread if I find any more problems, but that was the main one, so thanks!
December 5th, 2010 10:03 PM
Thanks for the relatively speedy reply! I'm pretty new to programming so forgive my lack of skills :P.
Do you have any links to reading material on objects and std::map I could read? I havent...
December 5th, 2010 09:51 PM
For the program to repeat itself, you should put the whole thing inside of a while loop which runs until a variable (I prefer using the word "end" as the variable name) changes to 1, like so:
...
December 5th, 2010 09:04 PM
Hey guys, I have recently been trying to redo a game I made a while back to make the code more efficient and readable, so that people looking at the source actually know what their looking at. So,...
December 5th, 2010 08:33 PM
December 5th, 2010 08:32 PM
<code> This is code </code>
<code>
This is code with a newline above it and below it.
</code>
Lolz just making sure I know how the code tags work
September 8th, 2010 12:08 AM
Ok, through about 20 minutes of looking through the program's source code, I eventually changed a few parts that were messed up (such as '=' instead of '==' or extra 'cin.ignore();'s where they dont...
September 7th, 2010 10:54 PM
I said I wasnt exactly an expert with loops (aka a lighter way of saying i basically know nothing :P)
anyways heres my code, its a bit umm.... well just look and see lol. I could have probably put...
September 7th, 2010 08:51 PM
Well, I finished the program with absolutely everything inside of a 'while' loop, and that ended up prompting me to enter in the string that I needed, but after I entered anything in, the program...
September 6th, 2010 10:53 PM
Maybe try "C++ Primer, 4th edition"? Its a big improvement over the earlier versions.
Also, there are plenty of guides online you could look into, as well. Try those out before spending all your $...
September 6th, 2010 10:49 PM
Hello, today I was working on a basic text 'game' (if you can call it a game at this point) to practice some basic techniques with loops, strings, arrays, etc., and what I would like to happen is...