源代码:
#include
#include
#include
#include
#define Smax 200
using namespace std;
struct student
{
string num;
string name;
float eng;
float math;
float clang;//定义c++
float gete(){return eng;}
float getm(){return math;}
float getcl(){return clang;}
string getn(){return num;}
string getna(){return name;}
int rank[3];
int row;//排名
int sinto(string,string,float,float,float);//输入数据
void sshow();//输出数据
float sall();// 求和
float save();//求平均
void objrank();//成绩分类
};
void shows()//普通函数
{
cout<
1