题目描述:
编写程序,判断给定的某个年份是否是闰年。
解题思路:
(1)若某个年份能被4整除但不能被100整除,则是闰年。 (2)若某个年份能被400整除,则也是闰年。
代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); 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+"不是闰年!"); } } }