Advertisement
desislava_topuzakova

02. Multiplication Table

Feb 10th, 2024
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. //първи множител: 1 до 10
  7. //втори множител: 1 до 10
  8.  
  9. for (int first = 1; first <= 10; first++)
  10. {
  11. for (int second = 1; second <= 10; second++)
  12. {
  13. int result = first * second;
  14. cout << first << " * " << second << " = " << result << endl;
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement