Skip to content
Snippets Groups Projects
Commit 8c67f944 authored by Alexandre's avatar Alexandre
Browse files

reorganisation du repo

parent c135dd13
Branches
No related tags found
No related merge requests found
Showing
with 20 additions and 4 deletions
package tpOO.tp01;
class Book{
String author;
String title;
......
package tpOO.tp01;
class HighScore{
Score[] top;
......
package tpOO.tp01;
class Score{
String name;
int score;
......
package tpOO.tp01;
class UseBook{
public static void main(String args[]){
......
package tpOO.tp01;
class UseBook2{
public static void main(String[] args){
Book book1 = new Book("chapeau", "pointu", 1992);
......
package tpOO.tp01;
public class UseHighScore {
}
......
package tpOO.tp01;
public class UseHighScore2 {
}
......
package tpOO.tp01;
public class UseHighScore3 {
}
......
package tpOO.tp01;
public class UseHighScore4 {
}
......
package tpOO.tp02;
class Competitor{
String numberSign;
int time;
......
package tpOO.tp02;
public class Dice {
}
......
package tpOO.tp02;
public class DicePlayer {
}
......
package tpOO.tp02;
public class OneDicePlayerGame {
}
......
package tpOO.tp02;
public class UseCompetitor {
}
......
package tpOO.tp02;
public class UseCompetitor2 {
public static void main(String[] args) {
Competitor alice = new Competitor(1, 45, 15, 20);
......
package tpOO.tp02;
public class UseDice {
}
......
package tp03;
package tpOO.tp03;
public class Card{
Color color;
......
package tp03;
package tpOO.tp03;
public enum Color {
CLUB, DIAMOND, HEART, SPADE;
......
package tp03;
package tpOO.tp03;
public enum Rank {
SEVEN, EIGHT, NINE, TEN, JACK, QUEEN, KING, ACE;
......
package tp03;
package tpOO.tp03;
public class Task {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment