亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

代碼
提交代碼
public class WrapperClassDemo1 { public static void main(String[] args) { int maxValue = Integer.MAX_VALUE; int minValue = Integer.MIN_VALUE; int size = Integer.SIZE; System.out.println("int 類型可取的最大值" + maxValue); System.out.println("int 類型可取的最小值" + minValue); System.out.println("int 類型的二進制位數" + size); } }
運行結果