#include int main( void ) { int j = 0; while ( j < 5 ) { cout << "j = " << j << endl; j = j + 1; } cout << "Done. Now j = " << j << endl; }