hi,
I need the answer as soon as you can
Write a c++ program that prompts the user to enter an integer number greater than Zero (0) and prints a multiplication table up to that number. The program should display an error message an and loop until an accepted value is entered
The program should run as follows:
Enter a number: -5
Error , Enter a number: -6
Error , Enter a number: -2
Error , Enter a number: 5
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 12 16 20
5 10 15 20 25
and thanks