Advertisement
Guest User

Untitled

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