10 lines
186 B
Java
10 lines
186 B
Java
|
|
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() ;
|
|
}
|
|
}
|