Java代码判断闰年
import java.util.Scanner;
public class LeapYear { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int year = scanner.nextInt();
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
System.out.println('yes');
} else {
System.out.println('no');
}
}
}
原文地址: https://www.cveoy.top/t/topic/bom5 著作权归作者所有。请勿转载和采集!