// Fig. 3.7: fig03_07.cpp // Shifted, scaled integers produced by 1 + rand() % 6. #include using std::cout; using std::endl; #include using std::setw; #include // contains function prototype for rand int main() { // loop 20 times for ( int counter = 1; counter <= 20; counter++ ) { // pick random number from 1 to 6 and output it cout << setw( 10 ) << ( 1 + rand() % 6 ); // if counter divisible by 5, begin new line of output if ( counter % 5 == 0 ) cout << endl; } // end for structure return 0; // indicates successful termination } // end main