pseudo code and flowchart of finding smallest of three numbers
Answers
Answered by
2
Answer:
declare three variable x, y,z
take vlaue in the variables cin>> x>>y>>z
compare first two nos.
if(x<y && x<z)
{
print x is smalest;
}
if else (y<x && y<Z)
{
print y is smalest;
}
else print z is smalest;
Explanation:
Similar questions