要求:
编程输出Int型变量的最大值
程序:
public class MaxInt {
public static void main(String[] args) {
int int_max = Integer.MAX_VALUE;
System.out.println("int型参数的最大值为:"+int_max);
}
}
结果:
拓展:
java八大基本数据类型
编程输出Int型变量的最大值
public class MaxInt {
public static void main(String[] args) {
int int_max = Integer.MAX_VALUE;
System.out.println("int型参数的最大值为:"+int_max);
}
}
java八大基本数据类型