?? card.h
字號:
#include <iostream.h>
#include <string.h>
#define max 100
class Card
{
int top;
char date[max][11]; //每次交易的日期記錄
int money[max]; //記錄每次交易金額
int rest[max]; //記錄每次交易后的余額
static int sum; //靜態(tài)數(shù)據(jù)成員,記錄累計額
public:
Card()
{
top=0;
}
void Cardin (char d[],int m);
void Cardout(char d[],int m);
void disp();
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -