1 package point; 2 3 class Point { 4 5 int x = 0; 6 int y = 0; 7 static int z = 100; // 定义静态变量z,类变量 8 static final double PI = 3.1415926;// final定义常量,它的值在运行时不能被改变 9 10 Point(int a, int b) { 11 //PI=3.1415926; 12 /* 13 * 当使用静态常量的时候,不能在构造函数中初始化, 因为静态时,
import java.util.*; public class GN { public static void main(String arg[]) { int a = 0;// 数字标记 int b = 0;// 位置标记 int time = 0;// 次数 int rdn[] = new int[5]; Random rd = new Random(); do { rdn[0] = rd.nextInt(9); rdn[1] = rd.nextInt(9); rdn[2] = rd.ne