У меня есть проблема с использованием цикла
Write a program that prompts an integer, and write multiplication table from 1 to that number. For example if the integer is 3 the output should be 1 2 3 4 5 6 7 8 9 10 2 4 6 8 10 12 16 18 20 3 6 9 12 15 18 21 24 27 30 Use nested for loops (two for loops one outer loop, one inner loop). Ч...