#include int main( void ) { int j = 0; while ( j < 5 ) { cout << "j has the value " << j << endl; j = j + 1; } }