👤

Given three integer input numbers, write an algorithm, that will display the minimum of the three numbers.

Răspuns :

Read a,b,c;
minimum=a;
if(b<minimum) minimum=b;
if(c<minimum) minimum=c;
Write minimum;