搜一下:1设计函数求出三个整数的最大数。函数头如下:intMax(intx,inty,intz
第一题 int Max(int x, int y, int z){ return (x>y?x:y)>z?(x>y?x:y):z;}