What is the pseudocode for the addition of two numbers?
Pseudocode is an artificial and informal language that helps programmer develops algorithm, But pseudocode is just a code without any syntax. It helps you think logically about code.
pseudocode for the addition of two numbers?
- Begin
- take num1 = form user
- take num2 = from user
- tkae 3rd. variable i.e num3 = num1 + num2
- print num3 variable
The Pseudocode looks like this.. I hope it helps you
Comments
Post a Comment