跳过c

时间:2015-09-15 17:53:49

标签: c scanf

我不知道为什么,当我运行它时,它会跳过“书中有多少页”scanf并直接进入第二个循环“谁是作者”。

我确定这与空白有关,但我认为我用for循环底部的getchar来解释这个问题。

标题:

struct bookInfo{
  char title[40];
  char author[25];
  float price;
  int pages;
}; 

.c文件:

int main()
{
  int ctr;
  struct bookInfo books[3]; 
  for (ctr = 0; ctr < 3; ctr++)
  {
    printf("what is the name of the book #%d?\n", (ctr+1));
    gets(books[ctr].title);
    puts("who is the author?");
    gets(books[ctr].author);
    puts("how much did the books cost");
    scanf(" $%f", &books[ctr].price);
    puts("how many pages in the book");
    scanf(" %d", &books[ctr].pages);
    getchar();
  }

  printf("here is the collection of books: \n");
  for (ctr = 0; ctr <3; ctr++)
  {
    printf("book #%d: %s by %s", (ctr+1), books[ctr].title, books[ctr].author);
    printf("\nit is %d pages and costs $%.2f", books[ctr].pages, books[ctr].price);
  }
  return 0;
}

2 个答案:

答案 0 :(得分:5)

改变这个:

puts("how much did the books cost");
scanf(" $%f", &books[ctr].price);

到此:

printf("how much did the books cost: $");
fflush( stdout );
scanf("%f", &books[ctr].price);

除非您打算让用户在价格之前键入$,否则会很烦人。您不需要格式字符串中的前导空格,因为%f告诉scanf跳过前导空格。

其次,永远不会永远不会使用gets。永远。无论如何,形状或形式。 (不是,)在您的程序中引入故障点/主要安全漏洞。它在1999年标准中已被弃用,并已从2011标准中删除。这是编程相当于在淋浴时拼接带电线。

使用fgets(与gets不同,它会尝试将换行符存储在目标缓冲区(如果有空间)或scanf(具有适当的精度)转换说明符)。

答案 1 :(得分:-3)

这是因为gets()读取当前缓冲区中存在的文本行。由于当前缓冲区包含“作者的名字是什么?”它读了它。

如果显示结构成员的内容,您可以清楚地看到它。

所以我建议这个     使用

    char *temp;
    fgets(STDIN,temp);
循环开始前

这有助于你