s123456m1 2016-05-05 12:18 采纳率: 100%
浏览 1380
已采纳

怎样用Calendar返回当前年份,程序如下

package yichang;

import java.sql.Date;
import java.util.Calendar;
import java.util.Scanner;

public class InsuranceCheck {
public static void BornYear(int bornyear)throws AgeException{
//why this way cannot use source with the file?
int years = 2016 - bornyear;

    if(years-16<0){
        throw new AgeException("年龄太小,不用保险!");
}
    if(years-16<4){
        throw new AgeException("需要缴纳2000元保险费!");
    }
    else{
        throw new AgeException("需要支付1000元保险费!");
    }


}

public static void main(String[] args) throws AgeException {
  Scanner sc=new Scanner(System.in);

// System.out.println("请输入出生年份:");
// String bornyear=sc.next();
try{
Calendar calendar = Calendar.getInstance();
Date dates = (Date) calendar.getTime();
BornYear(1996);
} catch(AgeException e){
System.out.println(e.getMessage());

 }
}

}

  • 写回答

2条回答

  • Testdddddddddddddddd 2016-05-05 12:52
    关注

    public class InsuranceCheck {
    public static void main(String[] args) throws Exception {
    Calendar calendar = Calendar.getInstance();
    Date dates = (Date) calendar.getTime();//Thu May 05 20:49:55 CST 2016
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy");//yyyy-MM-dd
    String year = sdf.format(dates);
    System.out.println(year);//2016
    }
    }

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?