17周任务1

 
/* (程序头部注释开始) 
* 程序的版权和版本声明部分 
* Copyright (c) 2011, 烟台大学计算机学院学生  
* All rights reserved. 
* 文件名称: 学生文件处理,保存为二进制文件                              
* 作    者: 苗影                        
* 完成日期:  2012       年   6    月     112  日 
* 版 本 号:           
 
* 对任务及求解方法的描述部分 
* 输入描述:  
* 问题描述:  
* 程序输出:  
* 程序头部的注释结束 
*/  
  

 
  
#include    
#include    
#include    
using namespace std;    
class Student    
{    
private:    
    string name; 
    int cpp;    
    int Math;    
    int English;    
    int All_score;    
    double Average;    
public:    
    Student();    
    Student(int c,int math,int english,int all_score,double average):cpp(c),Math(math),English(english),All_score(all_score),Average(average){}    
    friend void arrange_all_score(Student stu[]);  //排列总成绩  
    friend void get_frome_file(Student stu[]);  //从文件中读入成绩  
    friend void save_to_file(Student stu[]);  //保存到文件中  
    friend void get_heigh_allscore(Student stu[]);  //得到最高分  
    friend void get_height_Cscore(Student stu[]);  //得到最高c++成绩  
    friend void get_height_Mathscore(Student stu[]);  //得到最高高数成绩  
    friend void get_height_Englishscore(Student stu[]);//得到最高英语成绩  
    friend void getagain_fome_file(Student stu[]); //再次从文件中读出  
  
};    
Student::Student()    
{    
    cpp=0;    
    Math=0;    
    English=0;    
    All_score=0;    
    Average=0;    
}    
void arrange_all_score(Student stu[])    
{    
    int i,j;  
    Student t;  
    for( j=0;j<100;j++)    
    {    
        for( i=0;i<100-j;i++)    
            if(stu[i].All_scores.All_score)    
        {    
            s.All_score =stu[i].All_score ;    
              
        }    
    }    
    cout<<"总分成绩最高为:"<s.cpp)    
        {    
            s.cpp=stu[i].cpp;    
            s.name =stu[i].name ;    
        }    
    }    
    cout<<"C++成绩最高为:"<s.Math)    
        {    
            s.Math =stu[i].Math;    
            s.name =stu[i].name ;    
        }    
    }    
    cout<<"高数成绩最高为:"<s.English)    
        {    
            s.English =stu[i].English;    
            s.name =stu[i].name ;    
        }    
    }    
    cout<<"英语成绩最高为:"<>stu[i].name>>stu[i].cpp>>stu[i].Math>>stu[i].English;    
        stu[i].Average=(stu[i].cpp+stu[i].Math+stu[i].English)/3;    
        stu[i].All_score=stu[i].cpp+stu[i].Math+stu[i].English;    
    }   
    stu[100].name="苗影";  
    stu[100].cpp=100;  
    stu[100].Math=100;  
    stu[100].English=100;  
    stu[100].Average =100;  
    stu[100].All_score =300;  
    infile.close();    
  
}    
void save_to_file(Student stu[])    
{   
    ofstream outfile("binary_score.dat",ios::binary);   
    if (!outfile)    
    {    
        cerr<<"open error!"<

感言:一段旅程的结束意味着另一段旅程的开始,c++结束了,考试要开始了。

 
 

你可能感兴趣的:(17周任务1)