会计考友 发表于 2012-8-4 12:33:16

2012JAVA模拟试题及答案:编程题26

【程序26】   
题目:请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续   判断第二个字母。   
import java.util.*;
public class lianxi26 {
public static void main(String[] args) {
    getChar tw = new getChar();
    System.out.println("请输入星期的第一个大写字母:");
    char ch = tw.getChar();
    switch(ch) {
   case ’M’:
      System.out.println("Monday");
      break;
   case ’W’:
      System.out.println("Wednesday");
      break;
   case ’F’:
      System.out.println("Friday");
      break;
   case ’T’: {
      System.out.println("请输入星期的第二个字母:");
      char ch2 = tw.getChar();
      if(ch2 == ’U’) {System.out.println("Tuesday"); }
      else if(ch2 == ’H’) {System.out.println("Thursday"); }
      else {System.out.println("无此写法!");
       }
   };
      break;
   case ’S’: {
       System.out.println("请输入星期的第二个字母:");
      char ch2 = tw.getChar();
      if(ch2 == ’U’) {System.out.println("Sunday"); }
       else if(ch2 == ’A’) {System.out.println("Saturday"); }
       else {System.out.println("无此写法!");
       }
   };
      break;
default:System.out.println("无此写法!");
}
   }
}

class getChar{
public char getChar() {
    Scanner s = new Scanner(System.in);
    String str = s.nextLine();
    char ch = str.charAt(0);
    if(ch’Z’) {
   System.out.println("输入错误,请重新输入");
   ch=getChar();
    }
    return ch;
}
}
页: [1]
查看完整版本: 2012JAVA模拟试题及答案:编程题26