p9-1.c

来自「SUN Solaris8平台下进程间通信」· C语言 代码 · 共 48 行

C
48
字号
#include <stdio.h>char *menu[]={    /*命令菜单*/    "a - add new record",    "d - delete record",    "q - quit",    NULL};int getchoice(char *greet,char *choices[]);int main(void){    int choice = 0;    do {        choice = getchoice("Please select a 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();        /* 检查命令字符,正确置chosen=1*/        option = choices;        while(*option){            if(selected == *option[0]) {                chosen = 1 ;                break;            }            option++;        }        /*命令不正确,提示重新输入命令*/        if(!chosen)            printf("Incorrect choice,select agian\n");    } while(!chosen);  /*直至得到正确的命令*/    return selected;}

⌨️ 快捷键说明

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