student.h
来自「一个MFC编写的教学管理程序,可以实现成绩的输入和排序等,适合初学MFC者」· C头文件 代码 · 共 33 行
H
33 行
// student.h: interface for the student class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_STUDENT_H__E6E05B5D_9A40_41AA_B4A9_59D40FCE67F6__INCLUDED_)
#define AFX_STUDENT_H__E6E05B5D_9A40_41AA_B4A9_59D40FCE67F6__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class student
{
public:
student();
virtual ~student();
setstudent(int,int,char*,int,int,int,int,int,int,int);
int Class;
int numble;
CString name;
int term;
int s1;
double ss1;
double sss1;
int s2;
double ss2;
double sss2;
};
#endif // !defined(AFX_STUDENT_H__E6E05B5D_9A40_41AA_B4A9_59D40FCE67F6__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?