学生成绩管理系统
心得:编程序很痛苦,但比编程序更痛苦的,是调试程序。 package xitong; import java.util.Scanner; class ScoreInformation { private String stunumber; String name; double mathematicsscore; double englishiscore; double networkscore; double databasescore; double softwarescore; public ScoreInformation(String stunumber,String name,double mathematicsscore,double englishiscore,double networkscore,double databasescore,double softwarescore) { this.stunumber=stunumber; this.name=name; this.mathematicsscore=mathematicsscore; this.englishiscore=englishiscore; this.networkscore=networkscore; this.databasescore=databasescore; this