?? bachelor.h
字號:
// Bachelor.h: interface for the CBachelor class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_BACHELOR_H__C760009C_0D2D_4E05_B2B3_7DD882CBAC57__INCLUDED_)
#define AFX_BACHELOR_H__C760009C_0D2D_4E05_B2B3_7DD882CBAC57__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "Student.h"
#include<string>
using namespace std;
class CBachelor : public CStudent
{
protected:
string m_Gs,m_Xxds,m_Gltj,m_Sjgc,m_Xhyxt,m_Dzxl,m_Szxhcl;
//高等數(shù)學(xué) 線性代數(shù) 概率統(tǒng)計 隨機過程 信號與系統(tǒng) 電子線路 數(shù)字信號處理
public:
CBachelor();
CBachelor(string strName,string strNo,int iGrade,
string strGs,
string strXxds,string strGltj,string strSjgc,
string strXhyxt,string strDzxl,
string strSzxhcl);
virtual ~CBachelor();
//void operate();
/*void ab()
{
string a="0",b,a_course;
ifstream in("bachelor.txt");
while(a=="0")
{
in>>b;
getline(in,a_course);
if(b==m_strNo)
{
cout<<a_course;
a="1";
}
}
}*/
};
#endif // !defined(AFX_BACHELOR_H__C760009C_0D2D_4E05_B2B3_7DD882CBAC57__INCLUDED_)
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -