DEV/DEV2.1/TP2/Periode.java

11 lines
99 B
Java

public class Periode
{
private int jour;
public Periode(int j)
{
this.jour = j;
}
}