实践类API练习

package mydemo.day1.demo02;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;

/*
使用日期时间相关的API,计算出一个人已经出生了多少天
*/
public class Demo02Practice {
public static void main(String[] args) throws ParseException {
//输入要计算的一个人的出生日期–>是一个字符串
Scanner sc = new Scanner(System.in);
System.out.println(“请输入出生日期,格式为:xx年xx月xx日:”);
String birthTime = sc.next();
//将输入的出生日期字符串转化为日期–>用到parse方法:将符合模式的字符串解析为日期
SimpleDateFormat sdf = new SimpleDateFormat(“yyyy年mm月dd日”);
Date birthDate = sdf.parse(birthTime);
//获取当前系统的日期和时间
Date nowDate = new Date();
//将出生日期时间和当前日期时间转换为毫秒值进行差值计算
long birthDateTime = birthDate.getTime();
long nowDateTime = nowDate.getTime();
long result = nowDateTime - birthDateTime;
if(result < 0){
System.out.println(“数据输入错误!”);
}else{
float day = result / 1000 / 60 / 60 / 24;
System.out.println(“这个人已经出生了:”+day+“天了”);
}
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值