Java类和对象4
编写Java应用程序。首先,定义一个Print类,它有一个方法void output(intx),如果x的值是1,在控制台打印出大写的英文字母表;如果x的值是2,在控制台打印出小写的英文字母表。其次,再定义一个主类——TestClass,在主类的main方法中创建Print类的对象,使用这个对象调用方法output ()来打印出大小写英文字母表。
1 class Print { 2 void outPut(int x) { 3 if (x == 1) { 4 for (char i = 'A'; i <= 'Z'; i++) { 5 System.out.print(i + " "); 6 if (i == 'G' || i == 'N' || i == 'T') { 7 System.out.println(); 8 } 9 if (i == 'Q' || i == 'W') { 10 System.out.print(" "); 11 } 12 } 13 System.out.println(); 14 } else if (x == 2) { 15 for (char i = 'a'; i <= 'z'; i++) { 16 System.out.print(i + " "); 17 if (i == 'g' || i == 'n' || i == 't') { 18 System.out.println(); 19 } 20 if (i == 'q' || i == 'w') { 21 System.out.print(" "); 22 } 23 } 24 System.out.println(); 25 } else { 26 System.out.println("提示信息有误,请重新输入!"); 27 } 28 } 29 30 public static void main(String[] args) { 31 32 Print p1 = new Print(); 33 p1.outPut(1); 34 Print p2 = new Print(); 35 p2.outPut(2); 36 Print p3 = new Print(); 37 p3.outPut(3); 38 }
结果: