Computer Science, asked by priyanshi98, 1 year ago

Pls explain some examples of an algorithm ​

Answers

Answered by 19rishika04
0
Examples Of Algorithms In Programming
Write an algorithm to add two numbers entered by user.

Step 1: Start
Step 2: Declare variables num1, num2 and sum.
Step 3: Read values num1 and num2.
Step 4: Add num1 and num2 and assign the result to sum.
sum←num1+num2
Step 5: Display sum
Step 6: Stop
Similar questions