闰年的判断规则如下:(1)若某个年份能被4整除但不能被100整除,则是闰年。(2)若某个年份能被400整除,则也是闰年。package com.learn01; import java.util.Scanner; public cla
闰年的判断规则如下:
(1)若某个年份能被4整除但不能被100整除,则是闰年。
(2)若某个年份能被400整除,则也是闰年。
package com.learn01;
import java.util.Scanner;
public class Test04 {
public static void main(String args[]) {
Scanner scan=new Scanner(System.in);
System.out.println("请输入年份");
int year=scan.nextInt();
if(year%4==0 && year%100!=0) {
System.out.println(year+"是闰年");
}else if(year%400==0) {
System.out.println(year+"是闰年");
}else {
System.out.println(year+"不是闰年");
}
scan.close();
}
}
上述代码使用year%4==0 && year%100!=0与year%400==0语句判断是否是闰年。
--结束END--
本文标题: java中判断是否闰年
本文链接: https://lsjlt.com/news/1640.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-01
2024-04-03
2024-04-03
2024-01-21
2024-01-21
2024-01-21
2024-01-21
2023-12-23
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0