㈠ 設計一個學生類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]='