设计算法,找出3个数中的最大数如题

问题描述:

设计算法,找出3个数中的最大数
如题

if (a>b)&&(a>c)
max=a;
else if (b>c)
max=b;
else max=c;