mise à jour
This commit is contained in:
9
TP1/Station.java
Normal file
9
TP1/Station.java
Normal file
@@ -0,0 +1,9 @@
|
||||
public class Station{
|
||||
private String nom;
|
||||
public Station(String s){
|
||||
this.nom = s;
|
||||
}
|
||||
public String toString(){
|
||||
return "Station : "+this.nom;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user