cinput.h

来自「软件的名称:AA制用餐管理系统 软件的功能:管理消费中产生的费用」· C头文件 代码 · 共 21 行

H
21
字号
#ifndef _CINPUT_H
#define _CINPUT_H
#include "ErrorMessage.h"
#include "function.h"
#include <string>
using namespace std;
////////////////////////////////////////////////////////////////
class CInput
{
public:
	static int Getstring(char *str, int len);
	static int Getstring(string& str, int len);
	static int InputMenuSelect(int menucount,int x,int y);
	static void InputAccountInfo(int x,int y);//用于开设帐户输入操作
	static string InputName(int x,int y);
	static char InputSex(int x,int y);
	static string InputMobile(int x,int y,int sign);
	static string InputDate(int x,int y,int sign);

};
#endif

⌨️ 快捷键说明

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