public class DoesHuan{ public static void main(String[] args){ int year=100; if((year%4==0)||(year%400==0)&&(year%100!=0)){ System.out.println("是闰年"); } else{ System.out.println("不是闰年"); } } }应该不是闰年可是程序运行的是闰年
添加回答
举报
0/150
提交
取消