⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 score.cpp

📁 学生管理系统 使用Qt写的界面 交互性好
💻 CPP
字号:
#include "Score.h"

Score::Score(string s, string c, double g)
{
	this->SID = s;
	this->CID = c;
	this->grade = g;
}

void Score::setCID(string c)
{
	this->CID = c;
}

void Score::setgrade(double g)
{
	this->grade = g;
}

void Score::setSID(string s)
{
	this->SID = s;
}

string Score::getCID() const
{
	return this->CID;
}

double Score::getgrade() const
{
	return this->grade;
}

string Score::getSID() const
{
	return this->SID;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -