d067: 文文的求婚--續集 (1 行版)

題目:http://zerojudge.tw/ShowProblem?problemid=d067
程式碼:

import java.util.Scanner;
public class d067 {

 public static void main(String[] args) {
  // TODO Auto-generated method stub
  Scanner sc = new Scanner(System.in);
  while(sc.hasNext()){
   int y = sc.nextInt();//輸入年分
   if((y%4==0 && y%100!=0) || y%400==0){
    System.out.println("a leap year");
   }else{
    System.out.println("a normal year");
   }
  }

 }

}

留言

熱門文章