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

Latest changes

parent 613a1cb1
Branches
No related tags found
No related merge requests found
package tp03;
package tp03.ex01;
public class Card {
......
package tp03;
package tp03.ex01;
public enum Color {
CLUB, DIAMOND, HEART, SPADE;
......
package tp03;
package tp03.ex01;
public enum Rank {
SEVEN, EIGHT, NINE, TEN, JACK, QUEEN, KING, ACE;
......
package tp03.ex02;
public enum TaskStatus {
TODO, ONGOING, DELAYED, FINISHED;
}
\ No newline at end of file
package tp03;
package tp03.ex01;
public class UseCard {
public static void main(String[] args) {
......
......@@ -3,6 +3,8 @@ import java.time.chrono.ChronoLocalDate;
import java.util.Random;
import java.time.Period;
package tp03.ex01;
public class UseLocalDate {
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