设计算法,找出3个数中的最大数.
问题描述:
设计算法,找出3个数中的最大数.
答
if(b>a)
a = b;
if(c>a)
a =c;
return a;
设计算法,找出3个数中的最大数.
if(b>a)
a = b;
if(c>a)
a =c;
return a;