Advertisement
glafyn77

Untitled

Feb 17th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1.  
  2.  
  3. #include "pch.h"
  4. #include <iostream>
  5. using namespace std;
  6. int main()
  7. {
  8.     int a= 0;
  9.     int b = 0;
  10.     for ( a = 1; a < 10; a++)
  11.     {
  12.         for (  b= 1; b < 10; b++)
  13.         {
  14.             cout << a * b << "\t";
  15.         }
  16.        
  17.     }
  18.  
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement