2025 init

This commit is contained in:
Romain Lefeuvre
2025-11-18 14:43:08 +01:00
commit 7155dd77be
39 changed files with 1134 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package fr.istic.vv;
class Date implements Comparable<Date> {
public Date(int day, int month, int year) { }
public static boolean isValidDate(int day, int month, int year) { return false; }
public static boolean isLeapYear(int year) { return false; }
public Date nextDate() { return null; }
public Date previousDate() { return null; }
public int compareTo(Date other) { return 0; }
}