加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Year.java 924 Bytes
一键复制 编辑 原始数据 按行查看 历史
饶凤婷 提交于 2022-03-23 14:22 . 饶凤婷 第三次作业
import java.util.Scanner;
public class Year {
public static void main(String[] args) {
char length = 0;
Scanner sc;
do {
if (length == 0) {
System.out.println("请输入你要输入的年份数字:");
// 定义一个年份的变量
} else {
System.out.println("请重新输入四位数年份:");
}
sc = new Scanner(System.in);
String id = sc.next();
length = (char) id.length();
} while (length != 4);
System.out.println("请再次输入刚刚的四位数年份:");
int year = sc.nextInt();
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
System.out.println("结果为:" + year + "是闰年");
} else {
System.out.println("结果为:" + year + "是平年");
}
}}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化