Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. /*
  2. Jerome Jackson
  3. 0448797
  4. 26 Feb 2017
  5. journal 3A
  6. for loop
  7. */
  8.  
  9. #include <iostream>
  10.  
  11. using namespace std;
  12.  
  13. int main()
  14. {
  15.     for (int row = 1; row < 10; row++)
  16.     {
  17.         for (int col = 1; col < 10; col++)
  18.         {
  19.             cout <<  row * col << "\t";
  20.         }
  21.         cout << endl;
  22.     }
  23.  
  24.     return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement