read x,y,z
if (x<y & x<z) {print x}
else if (y<x & y<z) {print y}
else {print z}
design an algorithm that reads three numbers and prints that smallest number.using pseudo code and flow chart
3 answers
Non answer
Using pseudocode, write an algorithm to read two numbers then display the smallest