0

有谁知道以下代码可能有什么问题?当我运行它时,我得到以下输出:

Insert a value in the list: 1
Do you want to continue? y/N: 
 1 ->

事实是 do-while 循环一直执行到scanf("%c", &ch)语句,然后它跳出(所以我不能为ch变量提供任何输入)。我尝试使用 GDB 进行调试,但收到了一些奇怪的消息:

GI___libc_malloc (bytes=16) at malloc.c:malloc.c: No such file or directory. 

此外,它说编译器找不到该vscanf.c文件。有人对这种奇怪的行为有解释吗?谢谢!(目的是以相反的顺序打印单链表的值。)

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

struct node{
    int info;
    struct node* next;
};

struct node* head = 0;

void add_node(int value){

     struct node* current = malloc(sizeof(struct node));
     current->info = value;
     current->next = head;
     head = current;
 }

void print_node(struct node* head){

     while(head){

          printf(" %d -> ", head->info);
          head = head->next;
     }

     printf("\n");
 }

int main(void){

    int val;
    char ch;

    do {

       printf("Insert a value in the list: ");
       scanf("%d", &val);
       add_node(val);
       printf("Do you want to continue? y/N: ");
       scanf("%c", &ch);

    } while(ch == 'y' || ch == 'Y');

    printf("\n");
    print_node(head);
    return 0;
 }
4

3 回答 3

2

您可以检查 if-else 块中的正确输入,并相应地执行您的代码。例如,如果我需要检查用户是否想继续,我会这样做:

char chTemp; //Declare a test variable to check for newline
printf("Do you want to continue? y/N: ");
if (scanf("%c%c",&ch,&chTemp) != 2 || chTemp != '\n')
{
     printf("Error in input (Integer input provided)");
}
else
{
     //Do stuff.
}

它不仅会解决您的问题,还会检查粗心的整数输入。

于 2013-08-17T14:25:43.773 回答
2

如果您希望输入由新行分隔(您似乎这样做),然后更改您在角色中阅读的格式。更改以下内容:

scanf( "%c", &ch );

...对此:

scanf( "\n%c", &ch ); // << Note, \n to pickup newline before reading the value.
于 2013-08-16T22:43:32.377 回答
0

您遇到的问题是因为一旦您键入一个值val然后按回车键,那么\n仍然保留在输入缓冲区中。因此,下一个scanf假设\n仍然在输入缓冲区中的是它的输入,并消耗它,然后循环退出。

其他解决方案:-

1)scanf("%d%*c",&val);

这会将第一个输入字符分配给val,然后之后的任何内容都将被吃掉。因此,\n不会进入下一个scanf

2)scanf("%[^\n]%*c",&val);

这会将任何东西分配给valexcept\n然后\n被吃掉。

于 2013-08-17T15:00:33.103 回答