一、 代码说明
引入Scanner函数,将类命名为Judge类,使用try语句和catch语句将整体代码包围起来,使用if语句来判断是否为闰年,输入年份,然后得到相应的结论。
二、代码
import java.util.Scanner;
public class Judge
{public static void main(String[] args){try (Scanner scan = new Scanner(System.in)) {System.out.println("请输入一个年份");//向控制台输入一个提示信息long year;year = scan.nextLong();if(year % 4 == 0 && year % 100 !=0 || year % 400 == 0){System.out.println(year+"是闰年!");}else {System.out.println(year+"不是闰年!");}}catch(Exception e){System.out.println("您输入的不是有效年份!");}}
}