public int shu(double a,double b) { return a>b? a:b }
收起
问号前的表达式(a>b)为真,则返回冒号前的变量(a),否则返回冒号后的变量(b)
报告相同问题?