0
How to write an algorithm and flowchart that determine if the three numbers are all equal? Need help.
3 ответов
+ 15
Christine Balaoro
Algorithm:-
[Title] Equality of numbers
1) start
2) input 3 variable a, b and c
3) check if (a == b && b == c)
4) if above statement return true then print number are equal else number are not equal
5) end
use this symbols for accordingly
https://www.smartdraw.com/flowchart/flowchart-symbols.htm
0
Thank you
0
I don't know how to make flowchart of it