docs: adding subject and main

This commit is contained in:
amin 2024-07-01 15:15:00 +01:00 committed by zanninso
parent 78f53f650e
commit 3ceb7322eb
2 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,17 @@
public class ExerciseRunner {
public static void main(String[] args) {
AgeFinder AgeFinder = new AgeFinder();
// Test case 1
String date1 = "2000-01-01";
System.out.println("Age: " + AgeFinder.calculateAge(date1));
// Test case 2
String date2 = "1990-06-15";
System.out.println("Age: " + AgeFinder.calculateAge(date2));
// Test case 3
String date3 = "2010-12-25";
System.out.println("Age: " + AgeFinder.calculateAge(date3));
}
}

View File

@ -0,0 +1,56 @@
## Age Finder
### Instructions
Create a class `AgeFinder` that provides a method to calculate the age from a given date. The date will be provided in the format `yyyy-MM-dd`.
In case of any error the method `calculateAge` should return `-1`
### Expected Class
```java
import java.time.LocalDate;
import java.time.Period;
import java.time.format.DateTimeFormatter;
public class AgeFinder {
public int calculateAge(String date) {
// Implementation to calculate the age from the given date
}
}
```
### Usage
Here is a possible `ExerciseRunner.java` to test your class:
```java
public class ExerciseRunner {
public static void main(String[] args) {
AgeFinder AgeFinder = new AgeFinder();
// Test case 1
String date1 = "2000-01-01";
System.out.println("Age: " + AgeFinder.calculateAge(date1));
// Test case 2
String date2 = "1990-06-15";
System.out.println("Age: " + AgeFinder.calculateAge(date2));
// Test case 3
String date3 = "2010-12-25";
System.out.println("Age: " + AgeFinder.calculateAge(date3));
}
}
```
### Expected Output
```shell
$ javac *.java -d build
$ java -cp build ExerciseRunner
Age: 24
Age: 34
Age: 13
$
```