public class zy1 { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); int year=Integer.parseInt(scanner.next()); if(year%4==0){ System.out.println("闰年"); }else { System.out.println("不是闰年"); } } }
public class zy1 { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); int year=Integer.parseInt(scanner.next()); if(year%4==0){ System.out.println("闰年"); }else { System.out.println("不是闰年"); } } }