#include int main( void ) { int j = 0; while ( j < 5 ) { std::cout << "j has the value " << j << '\n'; j = j + 1; } }