-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathAgeCal.java
60 lines (46 loc) · 1.62 KB
/
AgeCal.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package InterviewQuestion;
import java.util.Scanner;
import java.time.LocalDate;
public class AgeCal {
public static void main(String[] args) {
int b_day,b_month,b_year;
Scanner sc = new Scanner(System.in);
String name;
System.out.println("Enter you name :-");
name=sc.next();
System.out.println("Enter your birthday date:-");
b_day=sc.nextInt();
System.out.println("Enter your birthday month:-");
b_month=sc.nextInt();
System.out.println("Enter your birthday year:-");
b_year=sc.nextInt();
int c_day=LocalDate.now().getDayOfMonth();
System.out.println(c_day);
int c_month=LocalDate.now().getMonthValue();
System.out.println(c_month);
int c_year=LocalDate.now().getYear();
System.out.println(c_year);
if (c_day>=b_day && c_month>=b_month && c_year>=b_year) {
b_day=c_day-b_day;
b_month=c_month-b_month;
b_year=c_year-b_year;
System.out.println(name+"Your Age:"+b_day+"Days"+b_month+" Months "+b_year+" Years");
}
else {
//find day
b_day=(c_day+30)-b_day;
c_month--;
c_month+=b_day/30;
b_day=b_day%30;
//find months
b_month=(c_month+12)-b_month;
c_year--;
c_year+=b_month/12;
c_month=b_month%12;
//find years
b_year=c_year-b_year;
//print Age on Screen
System.out.println(name+" Your Current Age: "+b_day+" Days "+b_month+" Months "+b_year+" Years Old");
}
}
}