2

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

public class Profesor {

private String materie;

private Cursant[] tab;

public Profesor(String materie,Cursant[] tab) {

// TODO Auto-generated constructor stub

this.materie=materie;

this.tab=tab;

public void evalueaza() {

for(int i=0;i<tab.length;i++)

tab[i].primestePunctaj(Math.random()*10);

public double media() {

double suma=0;

for(int i=0;i<tab.length;i++)

suma +=tab[i].getNota();

return suma/(tab.length);

public String toString() {

String a="Rezultate: \n";

for(int i=0;i<tab.length;i++)

a += tab[i]+"\n";

return a;

}
}

You might also like