/* ------------------------------------------------------ うるう年の判定 If_07_uruu_dosi ------------------------------------------------------ */ import java.io.*; class If_07_uruu_dosi { public static void main(String[] args) throws Exception { int nen; BufferedReader inp=new BufferedReader (new InputStreamReader(System.in)); String keybd; System.out.print("*** うるう年の判定をします ***\n"); System.out.print("西暦何年-->"); keybd=inp.readLine(); nen=Integer.parseInt(keybd); if ( nen % 400 == 0 ) System.out.print("\n うるう年です\n\n"); else if ( nen % 100 == 0 ) System.out.print("\n 平年です\n\n"); else if ( nen % 4 == 0 ) System.out.print("\n うるう年です\n\n"); else System.out.print("\n 平年です\n\n"); } }