Find the biggest of three (3) Numbers (Pseudocode If Else Example)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
BEGIN NUMBER num1,num2,num3 INPUT num1 INPUT num2 INPUT num3 IF num1>num2 AND num1>num3 THEN OUTPUT num1+ "is higher" ELSE IF num2 > num3 THEN OUTPUT num2 + "is higher" ELSE OUTPUT num3+ "is higher" ENDIF END |
Flowchart of Pseudocode
This site is very useful,for the course of programming.
Please give pseudo code for tower of Hanoi 4 disks
This site is very useful,for the course of programming. All lesson in programming are here in this site.
All lesson in programming are found in this site.
[…] You May Also Like: Pseudocode to Find the biggest of three (3) Numbers […]
Thanks so much, this was very helpful