【简答题】2读程序写出运行结果 public class Demo{ public static void main(String []args){ for(int month=3;month<=12;month=month+3){ switch (month/3){ case 1: {System.out.println(" 第一季度 "); break; } case 2: {System.ou...
【简答题】创建TestStatic 类,请写出运行结果 public class TestStatic { int x =0;// 非静态成员变量 int y =0 ;// 非静态 成员变量 void displayX (){ // 非静态 成员方法 System. out .print ( "x=" + x ++); } void displayY (){ // 非静态成员 变量 System. out ...