摘要:
1 public class 各种数据类型 { 2 static final int itime = 24; 3 public static void main(String[] args) { 4 byte bvolume = 64; 5 short ... 阅读全文
摘要:
a = 12b = 34c = 56System.out.println("h1 = " + a + b + c);System.out.println("h2 = " + (a + b) + c);System.out.println("h3 = " + ((a + b) + c));h1 = 1... 阅读全文
摘要:
阅读全文