一、效果如下
package test_20190808_001;
public class test_20190808_001 {
public static void main(String args[]) {
int max = Integer.MAX_VALUE;
//最大值
int min = Integer.MIN_VALUE;
//最小值
System.out.print(max);
System.out.print("|"
);
System.out.println(min);
}
}
转载于:https://www.cnblogs.com/tianpan2019/p/11359124.html
转载请注明原文地址: https://mac.8miu.com/read-404833.html