IMS-java/Code/Steiner/oop_theorie_1/src/App.java
2024-08-27 10:41:17 +02:00

16 lines
507 B
Java

// App.java
public class App {
public static void main(String[] args) {
Date my_birthday = new Date();
// Input birthday using the Date class method
my_birthday.inputBirthday();
// Print the entered birthday
System.out.println("Your birthday: " + my_birthday.day + " " + my_birthday.month + " " + my_birthday.year);
// Calculate and print the age
int age = my_birthday.calculateAge();
System.out.println("Your age is: " + age);
}
}