# Algorithm and Flowchart for Addition of two numbers

# Algorithm and Flowchart for Sum of two numbers

In this post, we will see an algorithm and flowchart to add two numbers. It will be applicable to write program in any programming language.

Required knowledge: Basics of Algorithm writing and flowchart drawing.

Algorithm:

Step 1: Start

Step 2: Declare variables num1, num2 and sum.

Step 3: Read values for num1, num2.

Step 4: Add num1 and num2 and assign the result to a variable sum.

Step 5: Display sum

Step 6: Stop

 

Flowchart :

Add two numbers flowchart

2 thoughts on “Algorithm and Flowchart to add two numbers”

Comments are closed.