欢迎来到天天文库
浏览记录
ID:55591005
大小:35.50 KB
页数:9页
时间:2020-05-19
《用JAVA编写的学生管理系统.doc》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、importjava.io.InputStreamReader;importjava.util.Scanner;/**@author*@since2013-07-28*/classstudent{//定义一个学生类privatestaticfinalintSUBJECT_NUM=0;Stringname="";Stringid="";intrecord[]=newint[3];inttotal=0;publicstudent(Stringname,Stringid,int[]record,inttotal){super();this.name=name;this.id=id;this.re
2、cord=record;this.total=total;}publicStringgetStudentId(){//定义get()和set()方法returnid;}publicvoidsetStudentId(StringstudentId){this.id=studentId;}publicStringgetStudentName(){returnname;}publicvoidsetStudentName(StringstudentName){this.name=studentName;}publicint[]getGrades(){returnrecord;}publicvoid
3、setGrades(int[]grades){this.record=grades;}publicintgetTotal(){returntotal;}publicvoidsetTotal(inttotal){this.total=total;}publicintgetSUBJECT_NUM(){returnSUBJECT_NUM;}}publicclassStudentsystem{privatestaticintcurrentNum=0;privatefinalstaticintTOTAL=60;publicstaticScannerscanner=newScanner(newInpu
4、tStreamReader(System.in));privatestaticstudent[]student=newstudent[TOTAL];publicstaticvoidmain(String[]args){ScanneruserInPut=newScanner(System.in);booleanflag=true;Studentsystemstus=newStudentsystem();//建立菜单选择系统while(true){System.out.println("----------------------欢迎进入菜单选择系统----------------------
5、--");System.out.println("1.添加学生2.删除学生3.比较两个人的总成绩4.查询学生信息");System.out.println("5.排序6.按总成绩过滤7.修改学生信息:8.显示学生信息:");intEnternumber;Enternumber=userInPut.nextInt();switch(Enternumber){case1://添加学生for(inti=0;i<3;i++){System.out.println("请输入学生信息:姓名,学号,数学,英语,JAVA,");stus.addInformation();}break;case2://删除
6、学生System.out.println("输入要删除学生的学号:");Studentsystem.deleteInformation();break;case3://比较两个人的总成绩System.out.println("请输入要比较的两个学生的学号:");Studentsystem.compareInformation();break;case4://查询学生信息System.out.println("请输入要查询的学生学号:");Studentsystem.selectInformation();break;case5://排序Studentsystem.sortInformati
7、on();break;case6://按总成绩过滤System.out.println("请输入要过滤的分数:");Studentsystem.guolvInformation();break;case7://修改学生信息System.out.println("请输入要修改的姓名:");Studentsystem.changeInformation();break;case8://显示学生信息Studentsystem.
此文档下载收益归作者所有