CCB Premier Import

This commit is contained in:
Christian Cunat-Brulé
2018-07-23 10:52:48 +02:00
commit f55475a23f
765 changed files with 209793 additions and 0 deletions

11
02-SOURCES/Ferme.java Normal file
View File

@@ -0,0 +1,11 @@
public class Ferme {
public static void main(String[] args) {
Panier cabas = new Panier ();
System.out.println (cabas.nbEmplacements);
PanierAC pJC = new PanierAC (2, 100, 12.5);
PanierAC pBob = new PanierAC (3, 50, 3.5);
pJC.prix = 37 ;
}
}