Java oop的題與答案5:統(tǒng)計(jì)一下班級所有學(xué)生的總成績,靜態(tài),數(shù)組對象,構(gòu)造方法

//統(tǒng)計(jì)一下班級所有學(xué)生的總成績
//1.學(xué)生類靜態(tài)屬性總成績,成員屬性姓名,成績
//2.在構(gòu)造方法里添加姓名和成績,構(gòu)造方法中每次添加總成績
//3.打印成總成績
//4.將每個學(xué)生保存到數(shù)組對象里,統(tǒng)計(jì)一共有多少個學(xué)生,打印他們的姓名成績
//5.打印班級的平均成績
package a;
public class student //public可不寫,不寫就有默認(rèn)的訪問修飾符
{
public? ?static? ?void? ? main(String[ ] args) {
student[] stdAry = new student[3] ;
stdAry[0] =new student("張三",80);
stdAry[1] =new student("李 四",70) ;
stdAry[2] =new student("王 五",60) ;
for (int i = 0; i < stdAry . length; i++){
renshu++;
}
System . out . println("總?cè)藬?shù)為"+renshu) ;
System . out . println("總成績?yōu)?#34;+student.zongchengji) ;
System . out . println("平均成績?yōu)?#34;+student.zongchengji/renshu) ;
}
public static int zongchengji;//靜態(tài)屬性總成績,還可以這樣寫:public static int zongchengji=0;
//不寫=的部分就是默認(rèn)zongchengji為0,為了直觀還是寫吧。
public int chengji;//成員屬性成績
public? static int renshu=0;
public String name ;//姓名
//在構(gòu)造方法里對姓名和成績進(jìn)行賦值
public student(String name, int chengji){
zongchengji=zongchengji+chengji;
this. name=name;
this . chengji=chengji;
? ? ?
System . out . println("姓名為"+name) ;
}
}
運(yùn)行效果:
