Skip to content
Snippets Groups Projects
Commit 28a183c9 authored by Ethan Robert's avatar Ethan Robert
Browse files

Latest changes

parent 613a1cb1
No related branches found
No related tags found
No related merge requests found
package tp03; package tp03.ex01;
public class Card { public class Card {
......
package tp03; package tp03.ex01;
public enum Color { public enum Color {
CLUB, DIAMOND, HEART, SPADE; CLUB, DIAMOND, HEART, SPADE;
......
package tp03; package tp03.ex01;
public enum Rank { public enum Rank {
SEVEN, EIGHT, NINE, TEN, JACK, QUEEN, KING, ACE; SEVEN, EIGHT, NINE, TEN, JACK, QUEEN, KING, ACE;
......
package tp03.ex02;
public enum TaskStatus { public enum TaskStatus {
TODO, ONGOING, DELAYED, FINISHED; TODO, ONGOING, DELAYED, FINISHED;
} }
\ No newline at end of file
package tp03; package tp03.ex01;
public class UseCard { public class UseCard {
public static void main(String[] args) { public static void main(String[] args) {
......
...@@ -3,6 +3,8 @@ import java.time.chrono.ChronoLocalDate; ...@@ -3,6 +3,8 @@ import java.time.chrono.ChronoLocalDate;
import java.util.Random; import java.util.Random;
import java.time.Period; import java.time.Period;
package tp03.ex01;
public class UseLocalDate { public class UseLocalDate {
public static boolean inArray(int[] array, int value) { public static boolean inArray(int[] array, int value) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment