LeapYear终极版

直接上图

 import javax.swing.*;
public class jie {
 public static void main (String args[]){
	 int y;
	String s=(String)JOptionPane.showInputDialog(null,"请输入一个数","输入对话框",
			JOptionPane.PLAIN_MESSAGE,null,null,null);
    y=Integer.parseInt(s);
 {
  if(y%4==0&&y%100!=0||y%400==0){
   System.out.println(y+"年是润年");
  }
  else{
   System.out.println(y+"年不是润年");
  }
 }
 }
}

程序和先行版一样,只是改进了or部分,使得程序简单明了

你可能感兴趣的:(LeapYear终极版)