闰年:能被4整除,但不能被100整除,或能被100整除,又能被400整除。
仙桃ssl适用于网站、小程序/APP、API接口等需要进行数据传输应用场景,ssl证书未来市场广阔!成为成都创新互联公司的ssl证书销售渠道,可以享受市场价格4-6折优惠!如果有意向欢迎电话联系或者加微信:028-86922220(备注:SSL证书合作)期待与您的合作!
Scanner scan = new Scanner(System.in);
int input = scan.nextInt();
if ((input % 4 == 0 input % 100 != 0)
|| ( input % 400 == 0))
System.out.println(input + "年闰年");
else
System.out.println(input + "年平年");
代码如下:
public class RUN {
public static void main(String[] args) {
//布尔型判断
int year = 2000;
boolean b1 = year%4==0;
boolean b2 = year%100!=0;
boolean b3 = year%400==0;
if(b1b2||b3){
System.out.println("闰年");
}else{
System.out.println("不是闰年");
}
//用if语句判断
int year2=2018;
if(year2 % 4 == 0 year2 % 100 != 0 || year2 % 400 == 0){
System.out.println("是闰年");
}else{
System.out.println("不是闰年");
}
}
}
代码截图:
扩展资料:
闰年是公历中的名词。闰年分为普通闰年和世纪闰年。
普通闰年:能被4整除但不能被100整除的年份为普通闰年。(如2004年就是闰年,1999年不是闰年);
世纪闰年:能被400整除的为世纪闰年。(如2000年是闰年,1900年不是闰年);
闰年(Leap Year)是为了弥补因人为历法规定造成的年度天数与地球实际公转周期的时间差而设立的。补上时间差的年份为闰年。闰年共有366天(1-12月分别为31天,29天,31天,30天,31天,30天,31天,31天,30天,31天,30天,31天)。
凡阳历中有闰日(二月为二十九日)的年;闰余(岁余置闰。阴历每年与回归年相比所差的时日);
注意闰年(公历中名词)和闰月(农历中名词)并没有直接的关联,公历中只分闰年和平年,平年有365天,而闰年有366天(2月中多一天);
平年中也可能有闰月(如2017年是平年,农历有闰月,闰6月)。
参考资料:百度百科-闰年
import java.util.*;
public class Judge {
/**
* @param args
*/
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("输入年份:");
int Num = input.nextInt();
int Y = Num%4;
if ( Y == 0 ) {
System.out.println(+ Num +"份为闰年");
}else{
System.out.println(Num+"份为平年");
}
}
}
这是我当年学java的时候找到资料。
/** 判断2009年是闰年还是平年。
*提示:
*闰年的条件是符合下面二者之一:(1)年份能被4整除,但不能被100整除;(2)能被400整除。
**/
public class Pdrp{
public static void main(String args[]){
int year=2009;
if((year%4==0year%100!=0)||year%400==0)
System.out.println("2009是闰年。");
else
System.out.println("2009是平年。");
}
}