Ask a Teacher



Replace the following conditional statement with if statement. min = (a

if(a < b)

{

if(a < c)

 min=a;

else 

 min=c;

}else{

if(b < c)

min=b;

else 

min=c;



comments powered by Disqus