Computer Science, asked by naavya5362, 1 month ago

Write a flow chart to find the multiplication table for given number n

Answers

Answered by vishal32456
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