📄 help_v3.h
字号:
#ifndef help_h
#define help_h
using namespace std;
void help()
{
cout<<endl;
cout<<"Command\t\tDescription"<<endl;
cout<<"-------\t\t-----------"<<endl;
cout<<endl;
cout<<"help\t\tLists all commands and their descriptions."<<endl;
cout<<"clr\t\tClears the current screen."<<endl;
cout<<endl;
cout<<"login server\tAllows access to various server functions, including \t\t\t\t'start server'."<<endl;
cout<<"login client\tStarts and opens a connection for the client program."<<endl;
cout<<endl;
cout<<"logout server\tEnds and closes the connection for the server program."<<endl;
cout<<"logout client\tEnds and closes the connection for the client program."<<endl;
cout<<endl;
cout<<"start server\tStarts the server and waits for connection."<<endl;
cout<<endl;
cout<<"send\t\tSends information from the client to the server program."<<endl;
cout<<endl;
cout<<"Display\tDisplays all currently connected IPs."<<endl;
cout<<endl;
cout<<"admin::password\tOpens the admin menu."<<endl;
cout<<"quit\t\tCloses the program."<<endl;
cout<<"exit\t\tCloses the program."<<endl;
cout<<endl;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -