欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

日期时间工具类小练习(计算你活了多少天)

程序员文章站 2022-04-15 19:12:28
日期时间工具类小练习根据日期时间工具类计算,从你出生到今天一共经历了多少天public class Birthday { //根据 日期时间 工具类 计算 . 从 你出生到今天 一共经历多少天 public static void main(String[] args) throws ParseException { Calendar calendar = Calendar.getInstance(); // 声明日历对象 Scanner sc =...

日期时间工具类小练习
根据日期时间工具类计算,从你出生到今天一共经历了多少天


public class Birthday {
    //根据 日期时间 工具类 计算 . 从 你出生到今天  一共经历多少天
    public static void main(String[] args) throws ParseException {
        Calendar calendar = Calendar.getInstance();   // 声明日历对象
        Scanner sc = new Scanner(System.in);//手动输入出生年月日并获取输入内容
        System.out.println("请输入您的出生年份:");
        int year = sc.nextInt();
        System.out.println("请输入您的出生月份:");
        int month = sc.nextInt();
        System.out.println("请输入您的出生日期:");
        int day = sc.nextInt();
        calendar.set(year, month-1, day);    // 将输入年、月、日放到日历中

        long olddate = calendar.getTimeInMillis();    //获得日历时间的毫秒值
        long nowdate = System.currentTimeMillis();    //获得当前时间的毫秒值
        long l = (nowdate - olddate) / 1000 / 60 / 60 / 24;  
         //将两值相减,再转换为天数   毫秒/分钟/小时/天
        System.out.println("您目前活了" + l + "天!");
    }
}

本文地址:https://blog.csdn.net/wzw_jiexika/article/details/107400670

相关标签: 练习题