Write a program to print the multiplication table of 5 using the FOR...NEXT loop.
Answers
Answered by
0
Answer:
Step 1: Enter a number to print table at runtime. Step 2: Read that number from keyboard. Step 3: Using for loop print number*I 10 times. // for(i=1; i<=10; i++) Step 4: Print num*I 10 times where i=0 to 10.
Similar questions