-
Notifications
You must be signed in to change notification settings - Fork 0
/
Practice26.java
55 lines (50 loc) · 1.32 KB
/
Practice26.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package fiftypratice;
import java.util.Scanner;
/**
* 题目:请输入星期几的第一个字母来判断一下是星期几,
* 如果第一个字母一样,则继续 判断第二个字母。
*
* */
public class Practice26 {
public static void main(String[] args) {
System.out.println("请输入星期数的第一个字母:");
String c;
String cc;
Scanner s=new Scanner(System.in);
c=s.nextLine();
switch(c){
case "M":
System.out.println("周一");
break;
case "W":
System.out.println("周三");
break;
case "F":
System.out.println("周五");
break;
case "T":
System.out.println("请输入第二个字符:");
cc=s.nextLine();
if(cc.equals("u")){
System.out.println("周二");
}else {
System.out.println("周四");
}
break;
case "S":
System.out.println("请输入第二个字符:");
cc=s.nextLine();
if(cc.equals("a")){
System.out.println("周六");
}else {
System.out.println("周日");
}
break;
default:
break;
}
if(s!=null){
s.close();
}
}
}