Algorithm Notes Section 2.3 Codeup Practice Questions CD

https://blog.csdn.net/navicheung/article/details/81202735

//计算a,b,c的最大值(不用知道abc是哪个最大最小)
max=a>b ? a : b;
max=max>c ? max : c;

 

Guess you like

Origin blog.csdn.net/sunshine04/article/details/108647873