Hi,
I am simply trying to output text to my project screen that has a counter which increments by one, than prints it. Here is my attempt.
int abovemaxpoints = 1001;
// this works for any scoring for the game.
while(std::cin >> abovemaxpoints)
{
std::cout << "star points" << counter++;
}
All I need is the screen to output the counter increments and then later be able to retrieve the value of the increment so the points can be showed at the end of game and then posted on a website if you wish to click a link. How would I do this??
Actually I would be happy if you told me how to make my above code to just output to my screen properly without posting it to a website, since I haven't been able to get it to appear on my screen.
Help, please and thank you.