3

我是 C 编程新手。我有一个关于 Switch 语句的快速问题。我有一个菜单,其中显示了如下选项列表:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

#define MAX 100

struct Video { 
char name[1024];        // Yvideo name
int ranking;                // Number of viewer hits
char url[1024];             // YouTube URL
};

struct Video Collection[MAX];

int tail = 0;

//-- Forward Declaration --// 
void printall();
void insertion();
void savequit();
void load();
void branching(char);
void menu(); 
int main()
{
char ch; 

load();     // load save data from file

printf("\n\nWelcome\n");

do {
    menu();
    fflush(stdin);            // Flush the standard input buffer 
    ch = tolower(getchar()); // read a char, convert to lower case
    branching(ch);
} while (ch != 'q');

return 0; 
}
void menu()
{
    printf("\nMenu Options\n");
printf("------------------------------------------------------\n");
    printf("i: Insert a new favorite\n");
    printf("p: Review your list\n"); 
    printf("q: Save and quit\n");
    printf("\n\nPlease enter a choice (i, p, or q) ---> "); 
}

void branching(char option)
{
switch(option)
{
    case 'i':
        insertion();
        break;

    case 'p':
        printall();
        break;

    case 'q':
        savequit();
        break;

    default:
        printf("\nError: Invalid Input.  Please try again..."); 
        break;
}
}

到目前为止,输入“i”(用于插入新条目)和 q(用于保存和退出)工作正常。但是,每次我输入“p”时,我都会得到默认情况。(错误:输入无效。请重试...)。我做错了什么?我相信开关的语法是正确的?我尝试将“p”更改为不同的字母,但我仍然得到默认大小写。如果有帮助,这是我的 printall() 方法...

void printall()
{
int i; 

printf("\nCollections: \n"); 

for(i = 0; i < tail; i++)
{
    printf("\nName: %s", Collection[i].name);
    printf("\nRanking (Hits): %d", Collection[i].ranking);
    printf("\nURL: %s", Collection[i].url);
    printf("\n");
}
}
4

3 回答 3

3

怎么样的东西:

char b[5];
do {
    menu();
    if(fgets(b,5,stdin)==NULL)
        return -1;

    ch = tolower(b[0]); // read a char, convert to lower case
    while(strlen(b)>=4&&b[3]!='\n'){
         check=fgets(b,5,stdin);
         if(check==NULL)
            return -1;
    }

    branching(ch);
} while (ch != 'q');
于 2012-09-29T16:42:53.380 回答
3

您可以在默认情况下输出无效字符。这可以帮助您了解如何处理您的输入。

default:
    printf("\nError: Invalid Input ('%c').  Please try again...", option); 
    break;
于 2012-09-29T16:54:43.303 回答
2

fflush(stdin)未定义,因为 fflush 仅针对输出流定义。要清除换行符,您可以简单地使用另一个 getchar()。

试试这个循环部分:

do {
    menu();
    ch = tolower((unsigned char)getchar());
    getchar();
    branching(ch);
} while (ch != 'q');
于 2012-09-29T16:27:51.840 回答