判断平年闰年JAVA代码
时间: 2023-03-27 10:02:56 浏览: 166
java程序代码判断闰年
以下是判断平年闰年的 JAVA 代码:
import java.util.Scanner;
public class LeapYear {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("请输入一个年份:");
int year = input.nextInt();
if ((year % 4 == && year % 100 != ) || year % 400 == ) {
System.out.println(year + "年是闰年");
} else {
System.out.println(year + "年是平年");
}
}
}
我可以回答你的问题,以上是判断平年闰年的 JAVA 代码。
阅读全文