📄 coursescore.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 + -