㈠ 设计一个学生类CStudent,包括姓名和三门课程成绩,利用重载运算符“+”将所有学生C++
如下:
#include <iostream>
#include <cstring>
#include<IOMANIP>
using namespace std;
class student
{
private:
char a[20]; //不能在类定义中对非static const型变量赋值
int x ,y ,z;
int cnt; //计数器,存放成绩对应的人数。默认为1个学生的成绩。
public :
student():cnt(1){
a[0]='