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

📄 coursescore.cpp

📁 一个简单的VC++学生信息管理系统源代码
💻 CPP
字号:
// CourseScore.cpp: implementation of the CCourseScore class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "CourseScore.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CCourseScore::CCourseScore()
{

	m_strCourseName = "";
	m_iScore = 0;
	m_strTeacher = "";
}

CCourseScore::CCourseScore(string strCourseName,
						   string strTeacher,
						   int iScore):m_strCourseName(strCourseName),
						   m_iScore(iScore),
						   m_strTeacher(strTeacher)
{
// 	fstream outfile;
// 	outfile.open("bachchengji.txt",ios::app|ios::out);
// 	outfile<<m_strNo<<"\t"<<m_strName<<"\t"<<m_iGrade<<endl;
// 	outfile.close();
}

CCourseScore::~CCourseScore()
{

}

⌨️ 快捷键说明

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