Asked by baikedagn

design an algorithm that reads three numbers and prints that smallest number.using pseudo code and flow chart

Answers

Answered by Steve
read x,y,z
if (x<y & x<z) {print x}
else if (y<x & y<z) {print y}
else {print z}
Answered by Esayas
Non answer
Answered by mihret
Using pseudocode, write an algorithm to read two numbers then display the smallest
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions