第16週-タスク2-学生成績ソート


【テーマ】
ファイルdatには100名の学生の名前とC++授業、高数、英語の成績が保存されています.
(1)名前、C++クラス、高数および英語の成績および合計スコア、平均スコアデータメンバーを含む学生クラスを定義し、メンバー関数は必要に応じて決定します.
(2)この生徒の成績を読み込み,対象配列で格納する.
(3)各科と総点の最高点を求める.
(4)総得点の降順(上位、下位)で並べ替えてください
(5)各課および合計点の最高点を画面に表示し、ソート後の成績表(合計点を含む)をファイルodered_に保存するscore.dat中です.
<関連ファイルのダウンロード>
【一点説明】
本題では学生クラスの設計を専門に提案した.私は教科書の中のプログラムに少し意見があって、書類を話しましたが、相手が見つかりませんでした.この問題を通して,ファイル操作がデータを操作する範囲を広げ,プログラムがオブジェクト向けの方法でやるのか,プロセス向けの方法で編むのか,どうでもいいことを知る.
【参考解答】
#include <fstream>
#include<iostream>
#include<string>
using namespace std;

//     
class Student
{
public:
	Student(){};
	Student(string nam, double c, double m, double e):name(nam),cpp(c),math(m),english(e){total=c+m+e;}
	void set_value(string nam, double c, double m, double e);
	string get_name(){return name;}
	double get_cpp(){return cpp;}
	double get_math(){return math;}
	double get_english(){return english;}
	double get_total(){return total;}
	void set_cpp(double c){cpp=c;}
	void set_math(double m){math=m;}
	void set_english(double e){english=e;}
	void set_total(double t){total=t;}
private:
	string name;
	double cpp;
	double math;
	double english;
	double total;
};

void Student::set_value(string nam, double c, double m, double e)
{
	name=nam;
	cpp=c;
	math=m;
	english=e;
	total=c+m+e;
}

int main( )
{
	Student stud[100],t; //stud[100]          
	string sname;
	double scpp, smath, senglish;
	int i,j;

	//               
	ifstream infile("score.dat",ios::in);  //          
	if(!infile)       //        
	{
		cerr<<"open error!"<<endl;
		exit(1);
	}
	for(i=0;i<100;i++)
	{
		infile>>sname>>scpp>>smath>>senglish;
		stud[i].set_value(sname, scpp, smath, senglish);
	}
	infile.close();

	//            
	Student max_stud("nobody",0,0,0);  //max_stud         ,     
	for(i=0;i<100;i++)
	{
		if(stud[i].get_cpp()>max_stud.get_cpp()) max_stud.set_cpp(stud[i].get_cpp());
		if(stud[i].get_math()>max_stud.get_math()) max_stud.set_math(stud[i].get_math());
		if(stud[i].get_english()>max_stud.get_english()) max_stud.set_english(stud[i].get_english());
		if(stud[i].get_total()>max_stud.get_total()) max_stud.set_total(stud[i].get_total());
	}

	//     
	for(j=0;j<100-2;j++) 
	{
		for(i=0;i<100-j-1;i++)   
			if (stud[i].get_total()<stud[i+1].get_total()) 
			{
				t=stud[i]; 
				stud[i]=stud[i+1];
				stud[i+1]=t;
			}
	}

	//           
	cout<<"C++    : "<<max_stud.get_cpp()<<endl;
	cout<<"        : "<<max_stud.get_math()<<endl;
	cout<<"      : "<<max_stud.get_english()<<endl;
	cout<<"      : "<<max_stud.get_total()<<endl;

	//              
	cout<<"    ordered_salary.txt         "<<endl;
	ofstream outfile("ordered_salary.txt",ios::out); 
	if(!outfile)    
	{
		cerr<<"open error!"<<endl;
		exit(1);
	}
	for(i=0;i<100;i++)
	{
		outfile<<stud[i].get_name()<<"\t";
		outfile<<stud[i].get_cpp()<<"\t";
		outfile<<stud[i].get_math()<<"\t";
		outfile<<stud[i].get_english()<<"\t";
		outfile<<stud[i].get_total()<<endl;
	}
	outfile.close();    
	system("pause");
	return 0;
}