Answers for "Write a program that will ask the user’s age and then tell them what year they were born in. java"

42

undo commit

# KEEP CHANGES
git reset --soft HEAD~1

# REMOVE CHANGES
git reset --hard HEAD~1
Posted by: Guest on April-07-2020
10

java age from date

LocalDate today = LocalDate.now();
LocalDate birthday = LocalDate.of(1987, 09, 24);

Period period = Period.between(birthday, today);

//Now access the values as below
System.out.println(period.getDays());
System.out.println(period.getMonths());
System.out.println(period.getYears());
Posted by: Guest on July-23-2020

Code answers related to "Write a program that will ask the user’s age and then tell them what year they were born in. java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language