?? 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 + -