⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 menu1.c

📁 《Beginning Linux Programming》书的配置实例源代码。
💻 C
字号:
#include <stdio.h>char *menu[] = {    "a - add new record",    "d - delete record",    "q - quit",    NULL,};int getchoice(char *greet, char *choices[]);int main(){    int choice = 0;    do    {        choice = getchoice("Please select an action", menu);        printf("You have chosen: %c\n", choice);    } while (choice != 'q');    exit(0);}int getchoice(char *greet, char *choices[]){    int chosen = 0;    int selected;    char **option;    do {        printf("Choice: %s\n",greet);        option = choices;        while(*option) {            printf("%s\n",*option);            option++;        }        selected = getchar();        option = choices;        while(*option) {            if(selected == *option[0]) {                chosen = 1;                break;            }            option++;        }        if(!chosen) {            printf("Incorrect choice, select again\n");        }    } while(!chosen);    return selected;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -