bonjour quelqu'un aider pour le class test
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
public class cour {
    private String nomcour;
     private ArrayList <Double> liste ;
    public cour(String nomcour)
    {
        this.nomcour=nomcour;
        liste=new ArrayList<Double>() ;
 
    }
}
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package collection;
import java.awt.geom.Arc2D;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.ListIterator;
//import java.util.ArrayList;
 
public class etudiant {
    private int matricule;
   private String nom; 
 private String prenom; 
     private ArrayList <Double> note ;
 private float moy; 
 
   public etudiant(int matricule,String nom,String prenom,float moy)
   {
       this.matricule=matricule;
       this.nom=nom;
       this.prenom=prenom;
      note = new ArrayList<Double>();
       this.moy=moy;
   }
    public static void main(String[] args) {
 
    }
    public ArrayList <Double> getNote() {
        return note;
    }
 
    public void setNote(ArrayList <Double> note) {
        this.note = note;
    }
    public int getMatricule() {
        return matricule;
    }
    public void setMatricule(int matricule) {
        this.matricule = matricule;
    }
    public String getNom() {
        return nom;
    }
 
    public void setNom(String nom) {
        this.nom = nom;
    }
    public String getPrenom() {
        return prenom;
    }
    public void setPrenom(String prenom) {
        this.prenom = prenom;
    }
 
    public void setMoy(float moy) {
        this.moy = moy;
    }
 
}
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
package collection;
 
 
public class test {
    public static void main(String[] args) {
       etudiant et[] = new etudiant[2]; 
       cour cr[] = new cour[2]; 
 
    }
}