2017-08-23 10:38:01 writer:pprp package test; import java.util.*; public class test2 { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("welcome to test2"); //记住数组初始化应该这样 int[] d = new int[]{1,2,3,4}…
2017-08-22 21:23:37. writer:pprp package test; public class helloWorld { int maxn = 123; //常量,需要定义一个对象调用 final int MAX = 20; //类常量,不需要再定义一个对象来调用 static final int MIN = -100; public static void main(String[] args) { // TODO Auto-generated method stub…