Write an algorithm to find sum of two numbers.
Answers
Answered by
2
Answer:
In programming, algorithm are the set of well defined instruction in sequence to solve a program. An algorithm should always have a clear stopping point.
Qualities of a good algorithm
Inputs and outputs should be defined precisely.
Each steps in algorithm should be clear and unambiguous.
Algorithm should be most effective among many different ways to solve a problem.
An algorithm shouldn't have computer code. Instead, the algorithm should be written in such a way that, it can be used in similar programming languages.
Answered by
3
Answer:
Explanation:
Step 1 : Start
Step 2 : Input A , B
Step 3 : C = A + B
Step 4 : Output C
Step 5 : Stop
Similar questions