教育路上
摘要:java子程序,作為主程序的一個類,等同于在后臺為實現主程序。以下是我們為大家整理的,相信大家閱讀完后肯定有了自己的選擇吧。
2023-09-08 09:30周子堯
package 項目三; public class Student1 {//子程序,作為主程序的一個類,等同于在后臺為實現主程序 private String name;//名字 private float score1; private float score2; private float score3;//定義三科分數及類型 float ave; float sum; void setname(String name) { thisname=name; } void setscore1(float score1) { thisscore1=score1; } void setscore2(float score2) { thisscore2=score2; } void setscore3(float score3) { thisscore3=score3; } String getname() { return name; } float getscore1() { return score1; } float getscore2() { return score2; } float getscore3() { return score3; } float getave(float ave) { thisave=ave; return ave; } float getsum(float sum) { thissum=sum; return sum; } Student1(){ } Student1(String name,float score1,float score2,float score3){ thisname=name; thisscore1=score1; thisscore2=score2; thisscore3=score3; } void show() { Systemoutprintln("姓名:"+name+" 語文成績:"+score1+" 數學成績"+score2+" 英語成績:"+score3+" 平均分:"+ave+" 總分:"+sum); } }//所有的this*,表示訪問類中的成員變量,用來區分成員變量和局部變量 //return表示返回指定類型的值 package 項目三; import 項目三Student1; public class Test1 {//主程序,用于實現相關的輸出 @SuppressWarnings("unused") public static void main(String[] args) { Student1 s1=new Student1("張三",905f,865f,695f);//張三數據 s1show(); Student1 s2=new Student1(); s2setname("李四");//李四數據 s2setscore1(805f); s2setscore2(925f); s2setscore3(955f); s2show(); Student1 s3=new Student1("王五",935f,885f,935f);//王五數據 s3show(); float ave=(s1getscore1()+s1getscore2()+s1getscore3())/3;//計算平均分 float sum=(s1getscore1()+s1getscore2()+s1getscore3());//計算總分 }//調用類中的數據實現功能 }
訪客的評論 2024/09/18 12:22
文中描述的是準確的嗎,如何報名!