Write an algorithm to print the multiplication table of a number in reverse order.

Print the multiplication table of a number in reverse order Problem Statement: Given a number, print its multiplication table in reverse order. Algorithm: Start Input the number (N). For each multiple from 10 to 1 (i.e., 10, 9, 8, …, 1), do the following: Multiply N by the current multiple. Print the result of the … Read more