📄 crm.cpp
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -