本文主要是介绍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语句实现输入1~12之间的整数,显示该月份的英语单词及这个月属第几季度。(要求使用switch语句完成)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!