Commit 238db2ff authored by Lucas NAURY's avatar Lucas NAURY

Conversion prix en double

parent 6c2ffacc
...@@ -5,11 +5,11 @@ public class Annonce { ...@@ -5,11 +5,11 @@ public class Annonce {
private int id; private int id;
private String titre; private String titre;
private String adresse; private String adresse;
private float prix; private double prix;
private int image; private int image;
// Constructeur // Constructeur
public Annonce(String titre, String adresse, int image, float prix) { public Annonce(String titre, String adresse, int image, double prix) {
this.titre = titre; this.titre = titre;
this.adresse = adresse; this.adresse = adresse;
this.image = image; this.image = image;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment