-
Notifications
You must be signed in to change notification settings - Fork 459
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
subjects/java/checkpoints/monthly-period/ExerciseRunner.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
public class ExerciseRunner { | ||
public static void main(String[] args) { | ||
MonthlyPeriod MonthlyPeriod = new MonthlyPeriod(); | ||
|
||
// Test case 1 | ||
String startDate1 = "2020-01-01"; | ||
String endDate1 = "2023-06-15"; | ||
System.out.println("Period: " + MonthlyPeriod.calculatePeriod(startDate1, endDate1)); | ||
|
||
// Test case 2 | ||
String startDate2 = "2015-05-20"; | ||
String endDate2 = "2015-10-20"; | ||
System.out.println("Period: " + MonthlyPeriod.calculatePeriod(startDate2, endDate2)); | ||
|
||
// Test case 3 | ||
String startDate3 = "2018-12-25"; | ||
String endDate3 = "2021-12-25"; | ||
System.out.println("Period: " + MonthlyPeriod.calculatePeriod(startDate3, endDate3)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
## Monthly Period | ||
|
||
### Instructions | ||
|
||
Create a class `MonthlyPeriod` that provides a method to calculate the period between two given dates in terms of months and years. The dates will be provided in the format `yyyy-MM-dd`. | ||
|
||
In case of any error the method `calculatePeriod` should return `Error` | ||
|
||
> 💡 Going to the past is possible! | ||
### Expected Class | ||
|
||
```java | ||
import java.time.LocalDate; | ||
import java.time.Period; | ||
import java.time.format.DateTimeFormatter; | ||
|
||
public class MonthlyPeriod { | ||
public String calculatePeriod(String startDate, String endDate) { | ||
// Implementation to calculate the period between two dates in months and years | ||
} | ||
} | ||
``` | ||
### Usage | ||
|
||
Here is a possible `ExerciseRunner.java` to test your class: | ||
|
||
```java | ||
public class ExerciseRunner { | ||
public static void main(String[] args) { | ||
MonthlyPeriod MonthlyPeriod = new MonthlyPeriod(); | ||
|
||
// Test case 1 | ||
String startDate1 = "2020-01-01"; | ||
String endDate1 = "2023-06-15"; | ||
System.out.println("Period: " + MonthlyPeriod.calculatePeriod(startDate1, endDate1)); | ||
|
||
// Test case 2 | ||
String startDate2 = "2015-05-20"; | ||
String endDate2 = "2015-10-20"; | ||
System.out.println("Period: " + MonthlyPeriod.calculatePeriod(startDate2, endDate2)); | ||
|
||
// Test case 3 | ||
String startDate3 = "2018-12-25"; | ||
String endDate3 = "2021-12-25"; | ||
System.out.println("Period: " + MonthlyPeriod.calculatePeriod(startDate3, endDate3)); | ||
} | ||
} | ||
``` | ||
|
||
### Expected Output | ||
|
||
```shell | ||
$ javac *.java -d build | ||
$ java -cp build ExerciseRunner | ||
Period: 3 years and 5 months | ||
Period: 5 months | ||
Period: 3 years | ||
$ | ||
``` |