ComputerShikshak.com

Flowchart - Multiply two Numbers

Problem Statement

Draw a Flowchart to multiply two numbers.

Brief Description

According to the problem statement we have to draw a flowchart that will multiply two given numbers and display the result.

For example, if 2 and 6 are given as input, we will get 12 as output since 2*6=12.

Flowchart

Explanation

In order to draw the flowchart given above the following steps are taken into consideration:
  • At first two numbers are taken as input from the user and is stored in the variables namely num1 and num2 respectively.
  • Then the values of num1 and num2 are multiplied and the result is stored in the variable multi.
  • Finally the value of multi is displayed as output.
Share this page on
Scroll to Top