Guest User

Untitled

a guest
Dec 7th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8. for(int i=0; i < 6; i++)
  9. {
  10. for(int j=1; j < 6; j++)
  11. {
  12. int wynik;
  13. wynik=i*j;
  14. cout<<wynik<<" ";
  15. }
  16. cout<<endl;
  17. }
  18.  
  19. }
Add Comment
Please, Sign In to add comment