Advertisement
Guest User

zadanie 5

a guest
Oct 12th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. int main()
  5. {
  6.     int n;
  7.     int n_max= 11;
  8.     for (n=1;n<n_max;n++)
  9.  
  10. {
  11.  
  12.     int m;
  13.     int m_max= 11;
  14.     for(m=1;m<m_max;m++)
  15.  
  16.     cout<< n*m<< " ";
  17.     cout<< "\n";
  18. }
  19.  
  20.  
  21.  
  22.     system("PAUSE");
  23.     return(0);
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement