// 如果当前值大于max,则替换max的值 // 如果当前值小于min,则替换min的值
请问这怎么表示,可以用if?还是其他的方法?
if(x > max) max = x; if(x < min) min = x;