摘要: //用if条件语句比较大小 int x = 89; int y = 72; if (x>y){ System.out.println("较大的数是:"+x); } else if (x==y) { System.out.print... 阅读全文