help.c
来自「小型的c语言程序实例 都通过编译 有word的介绍文档」· C语言 代码 · 共 19 行
C
19 行
/*PrintHelp()函数,显示帮助信息*/
PrintHelp()
{
printf("\n");/*另起1行打印帮助*/
printf("+---------------------------------------------------------+\n");
printf("+ you hava 10 opportunities to guess num +\n");
printf("+ every time the system will hint you: +\n");
printf("+ 'A' means correct value and correct position +\n");
printf("+ 'B' means correct value but incorrectness position +\n");
printf("+-------------------for example:--------------------------+\n");
printf("+ 1A2B:1 number with correct value and correct position +\n");
printf("+ 2 number with correct value but incorrect position +\n");
printf("+---------------------------------------------------------+\n");
printf("+ about the score list +\n");
printf("+ the score list is store the five player's score on top +\n");
printf("+---------------------------------------------------------+\n");
getch();/*使屏幕停在此界面,按任意键返回主界面*/
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?