cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
problems with my score
problems with my score
Oct 21, 2010 at 12:33am UTC
beavis811
(4)
I am creating an I.Q. quiz with 6 questions after you get one right, it adds one poinbt to your score, how do i make it add one point when you get one right and how do i make your score viewable at the end?
Oct 21, 2010 at 12:40am UTC
Athar
(4466)
1
2
3
4
5
int
score=0; [...] score++; [...] cout <<
"Score: "
<< score << endl;
Oct 21, 2010 at 12:43am UTC
beavis811
(4)
Thanks, sorry to bother you. I am a very big nooby.
Topic archived. No new replies allowed.