📄 count.h
字号:
// Count.h: interface for the CCount class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COUNT_H__940B1663_ADDA_41BD_8641_C9AD386A0E5D__INCLUDED_)
#define AFX_COUNT_H__940B1663_ADDA_41BD_8641_C9AD386A0E5D__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CCount
{
public:
int m_Times[12][9];
double m_Count[12][9];
public:
CCount();
virtual ~CCount();
int GetYearTimes (int);
double GetYearCount (int);
};
#endif // !defined(AFX_COUNT_H__940B1663_ADDA_41BD_8641_C9AD386A0E5D__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -