C语言程序设计,十万火急!求助大佬!编写一个十页帮助文档程序代码,具体要求如下:

2024-11-06 11:05:30
推荐回答(1个)
回答(1):

#include
#include
void display()
{
int num = 0;
char c;

do
{
num++;
if (num >= 10)
{
return;
}
system("cls");
printf("这是第%d页\n", num);
printf("按数字键跳到相关页面\n");
printf("按任意键跳到下一页\n");
c = getch();
if (c >= '1' && c <= '9')
{
num = c - '1';
}
}
while (1);
}
int main(int argc, char* argv[])
{
display();
return 0;
}