action.h

来自「一门课程的proj」· C头文件 代码 · 共 20 行

H
20
字号
#pragma once

#define integer 1
#define real 2
#define boolean 3

class action
{
public:
	action(void);
	~action(void);

public:
	static string  itos(int i );
	void take_action(int creation_num);

public:
	code _code;
};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?