admin 管理员组

文章数量: 887006

java使用switch语句实现输入1~12之间的整数,显示该月份的英语单词及这个月属第几季度。(要求使用switch语句完成)

1.程序如下:

package java实训;
import java.util.Scanner;
public class SJ4 {public static void main(String[] args) {Scanner input =new Scanner(System.in);System.out.println("请输入1-12任意一个月份: ");int month= input.nextInt();switch (month) {case 1:System.out.println("一月,January,本月为第一季度,春季,春暖花开");break;case 2:System.out.println("二月,February,本月为第一季度,春季,春暖花开");break;case 3:System.out.println("三月,March,本月为第一季度,春季,春暖花开");break;case 4:System.out.println("四月,April,本月为第二季度,夏季,烈日阳光");break;case 5:System.out.println("五月,May,本月为第二季度,夏季,烈日阳光");break;case 6:System.out.println("六月,June,本月为第二季度,夏季,烈日阳光");break;case 7:System.out.println("七月,July,本月为第三季度,秋季,瓜果飘香");break;case 8:System.out.println("八月,August,本月为第三季度,秋季,瓜果飘香");break;case 9:System.out.println("九月,September,本月为第三季度,秋季,瓜果飘香");break;case 10:System.out.println("十月,October,本月为第四季度,冬季,满堂溢彩");break;case 11:System.out.println("十一月,November,本月为第四季度,冬季,满堂溢彩");break;case 12:System.out.println("十二月,December,本月为第四季度,冬季,满堂溢彩");break;default:System.out.println("你输入的月份不在1-12中,请重新输入!");}}
}

2.程序运行效果如下

 

本文标签: java使用switch语句实现输入112之间的整数,显示该月份的英语单词及这个月属第几季度(要求使用switch语句完成)