crm.cpp

来自「标准C++编写的小小CRM软件,无任何平台依赖.采用标准XML作为数据库.只需重」· C++ 代码 · 共 21 行

CPP
21
字号
#include <iostream>
#include <conio.h>
#include "command.h"using namespace std;
int main(int argc,char **argv)
{
	string cmd;
		/* welcome message */	cout<<"Welcome to CRM system,";	cout<<"type \"help\" for more information."<<endl;	while( true ){
		cout<<"> ";
		getline( cin,cmd );
		if( !execCommand(cmd) )
		{	return false;		}	}	return true;}

⌨️ 快捷键说明

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