閏年:能被4整除,但不能被100整除,或能被100整除,又能被400整除。
仙桃ssl適用于網(wǎng)站、小程序/APP、API接口等需要進行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信: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)是為了彌補因人為歷法規(guī)定造成的年度天數(shù)與地球?qū)嶋H公轉(zhuǎn)周期的時間差而設(shè)立的。補上時間差的年份為閏年。閏年共有366天(1-12月分別為31天,29天,31天,30天,31天,30天,31天,31天,30天,31天,30天,31天)。
凡陽歷中有閏日(二月為二十九日)的年;閏余(歲余置閏。陰歷每年與回歸年相比所差的時日);
注意閏年(公歷中名詞)和閏月(農(nóng)歷中名詞)并沒有直接的關(guān)聯(lián),公歷中只分閏年和平年,平年有365天,而閏年有366天(2月中多一天);
平年中也可能有閏月(如2017年是平年,農(nóng)歷有閏月,閏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+"份為平年");
}
}
}
這是我當(dāng)年學(xué)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是平年。");
}
}