Computer Science, asked by bazlakhalid999, 1 year ago

pseudo code and flowchart of finding smallest of three numbers

Answers

Answered by vkkr532001
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