?? cscores.h
字號:
#include<iostream.h>
#include<string.h>
class Cscores
{
public:
Cscores(int num1=0,char name1[10]="nostudent",float math1=0,float computer1=0,float english1=0)
{
num=num1;
strcpy(name,name1);
math=math1;
computer=computer1;
english=english1;
}
~Cscores(){}
protected:
int num;
char name[10];
float math;
float computer;
float english;
};
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -