Computer Science, asked by lakraabhinav25, 6 hours ago

Write an algorithm to calculate and display the multiplication​

Answers

Answered by bagtanarmy123
2

Explanation:

Algorithm to display multiplication table of a given number

Input the number for which the multiplication table is to be generated.

Input the end value until which the table has to be generated.

Repeat from i = 1 to end.

Display the table values in the given output format.(num * i = num*i)

Answered by Thunder2757
0
Answer:
step 1 : set count =1.
step 2: if count <=5.
step 3: result = result * count.
step 4: Print result.
step 5: count = count +1, Go to Step 2.
Similar questions