1 Star 0 Fork 0

姚鑫/第四章作业

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Code010.java 648 Bytes
一键复制 编辑 原始数据 按行查看 历史
import java.util.Scanner;
public class Code010 {
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:
case 2:
case 3:
System.out.println("第一季度");
break;
case 4:
case 5:
case 6:
System.out.println("第二季度");
break;
case 7:
case 8:
case 9:
System.out.println("第三季度");
break;
case 10:
case 11:
case 12:
System.out.println("第四季度");
break;
default:
System.out.println("输入月份错误!");
break;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/duojiu327/DiSiZhangZuoYe.git
[email protected]:duojiu327/DiSiZhangZuoYe.git
duojiu327
DiSiZhangZuoYe
第四章作业
master

搜索帮助