// // Program name: multiplication_table // Author: B. Massingill // // Input: none // Output: multiplication table showing, for each combination of // numbers i and j, where 0 <= i <= 9 and 0 <= j <= 9, // the product of i and j #include int main() { int i = 0 ; while (i <= 9) { int j = 0 ; while (j <= 9) { cout << i << " times " << j << " = " << i*j << endl ; j++ ; } i++ ; } return 0 ; }