package fr.codegym.task.task05.task0519; /* On tourne en rond, là */ public class Cercle { int centreX = 0; int centreY = 0; int rayon = 0; int largeur = 0; int couleur = 0; public void Cercle(int centreX, int centreY, int rayon) { this.centreX = centreX; this.centreY = centreY; this.rayon = rayon; } public void Cercle(int centreX, int centreY, int rayon, int largeur) { this.centreX = centreX; this.centreY = centreY; this.rayon = rayon; this.largeur = largeur; } public void Cercle(int centreX, int centreY, int rayon, int largeur, int couleur) { this.centreX = centreX; this.centreY = centreY; this.rayon = rayon; this.largeur = largeur; this.couleur = couleur; } //écris ton code ici public static void main(String[] args) { } }