You can write this with a for loop too, which has variable incrementing built in:
Code:
#include <iostream> //has cout
for ( int count = 1 ; count <= 10 ; count++ ) {
system("pause"); //waits for user to press enter
std::cout << "Count: " << count << std::endl;
}
std:: needs to be added to the front of STL functions like cout unless you specify "using namespace std;" at the top of the program.