Write a flow chart to find the multiplication table for given number n
Answers
Answered by
0
Answer:
An algorithm gives step by step instructions on how to solve a problem.
- Start the process.
- Input N, the number for which multiplication table is to be printed.
- For T = 1 to 10
- Print M = N * T
- End For
- Stop the process.
Explanation:
hope this helps u...
Similar questions