showmenu.cpp
来自「一个关于赫夫曼编码与译码的展示程序」· C++ 代码 · 共 16 行
CPP
16 行
#include"Huffmanhead.h"
void ShowMenu()//用于界面菜单显示
{
printf("\t*****************Huffman Coding and DecryptCoding****************\n");
printf("\t*\t\t\t\t\t\t\t\t*\n");
printf("\t*\tI: Input the code to initialize the application\t*\n");
printf("\t*\tC: Coding the code which you just entered\t\t*\n");
printf("\t*\tD: DecryptCoding the code which you input now\t*\n");
printf("\t*\tR: Reset the application\t\t\t\t*\n");
printf("\t*\tS: Show the Designer and the Guide Teacher\t\t*\n");
printf("\t*\tE: Exit the application now\t\t\t\t*\n");
printf("\t*\t\t\t\t\t\t\t\t*\n");
printf("\t*****************************************************************\n");
printf("\n");
printf("Please choose:\n");
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?