max = nums[i]>max?nums[i]:max;//(1)
// nums[i]>max?max = nums[i]:max = max;//(2)
想请教一下,为什么2不能通过啊?
条件运算符返回的是值,形如int x= ? : 要将值返回到x