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

View File

@@ -0,0 +1,9 @@
public class TesteCercle {
public static void main (String args[])
{ Cercle c1 = new Cercle(1, 3, 2.5) ;
c1.affiche() ;
c1.deplace (4, -2) ;
c1.affiche() ;
}
}