ComputerShikshak.com

Flowchart - Add two Numbers

Problem Statement

Draw a Flowchart to add two numbers.

Brief Description

According to the problem statement we have to draw a flowchart that will add two given numbers and will find the sum.

For example, if 5 and 3 are given as input, we will get 8 as output since 5+3=8.

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 added and the result is stored in the variable add.
  • Finally the value of add is displayed as output.
Share this page on
Scroll to Top