摘要: public class IfTest{ public static void main(String[] args){ int a = 100; int b = 150; int c = 200; //三元实现 itn temp = (a > b) ? a : b; itn max = (temp 阅读全文