欢迎来到天天文库
浏览记录
ID:58427282
大小:38.00 KB
页数:2页
时间:2020-09-03
《实验一 初步的面向对象的程序设计练习.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、实验一初步的面向对象的程序设计练习1)编写程序实现如下功能:已知学生类有域变量(姓名、考号、综合成绩、体育成绩)和方法(获取综合成绩、获取体育成绩、显示基本信息),学校类有静态变量(录取分数线)和方法(设置录取分数、获取录取分数线),录取类有方法(获取学生是否符合录取条件,其中录取条件为综合成绩在录取分数线之上,或体育成绩在96分以上并且综合成绩大于300分)。现要求编写程序输出一组学生对象中被某学校录取的学生基本信息。程序清单:classStudent{Stringname;Stringid;floatcomScore;
2、floatscore;Student(Stringname,Stringid,floatcomScore,floatscore){this.name=name;this.id=id;this.comScore=comScore;this.score=score;}floatgetcomScore(){returncomScore;}floatgetscore(){returnscore;}voidprint(){System.out.println("Name:"+name+"IDnumber:"+id+"comScore
3、:"+comScore+"score:"+score);}}classSchool{staticfloatscoreLine;staticvoidsetScoreLine(floatscore){scoreLine=score;}staticfloatgetScoreLine(){returnscoreLine;}}publicclassEnroll{staticbooleanisEnroll(Students){if(s.getcomScore()>=School.getScoreLine()
4、
5、(s.getscore(
6、)>96&s.getcomScore()>=300))returntrue;elsereturnfalse;}publicstaticvoidmain(Stringargs[]){School.setScoreLine(533);Studentc[]=newStudent[3];c[0]=newStudent("徐小刚","5",547,92);c[1]=newStudent("窦海峰","4",444,98);c[2]=newStudent("郑小康","3",380,70);for(inti=0;i<3;i++){if
7、(isEnroll(c[i])){c[i].print();System.out.println(c[i].name+"isenrolled.");}elseif(!(isEnroll(c[i]))){c[i].print();System.out.println(c[i].name+"isnotenrolled.");}}}}运行结果:
此文档下载收益归作者所有