簡體   English   中英

fscanf無法正確掃描值

[英]fscanf not scanning values properly

我有以下代碼:

#include <stdio.h>
#include <string.h>
#define SIZE 6
struct books{
    char name[100],author[100];
    int year,copies;
  };
struct books book1[SIZE],book2[SIZE],*list;

main()
{
  unsigned i;

  char line [ 100 ],temp1[100],temp2[100],c; /* line size */
  size_t len;

  FILE *file;

  file=fopen("input.txt","rw");

  int k=0;
  for(i=0;  fgets ( line, sizeof line, file) ; i++ ) /* read a line */
  {
    len = strlen(line);
    while (len && line[len-1] == '\n') line[--len] = 0;
    switch (i % 4) 
    {
      case 0: /* handle first line here */
             fscanf(file, "%[^\n]s",book1[k].author);
             break;
      case 1: /* handle second line here */

             fscanf(file, "%[^\n]s",book1[k].name);
             break;
      case 2: /* handle third line here */

             fscanf(file, "%[^\n]s",temp1);
             book1[k].year=atoi(temp1);
             break;
      case 3: /* handle fourth line here */

             fscanf(file, "%[^\n]s",temp2);
             book1[k].copies=atoi(temp2);
             break;
    }
    if(i % 4 == 3)
    {
      k++;
    }
  }
  fclose(file);

  i=0;
  while(i<SIZE)
  {
    printf("##########################################################################\n");
    printf("\nAuthor: %s\nBook: %s\nYear of Publication: %d\nNo of Copies: %d\n\n",book1[i].author,book1[i].name,book1[i].year,book1[i].copies);
    printf("##########################################################################\n");
    i++;
  }

}  

輸入文件為:

A
Ruby On Rails
2004
100
J
Learn Python Easy Way
1967
100
D
Harry Potter and the Sorcerer's stone
2012
150
D
Harry Potter and the Sorcerer's stone
3045
140
Z
Harry Potter and the Sorcerer's stone
2013
150
K
Inferno
1993
453  

但是我的輸出是:

##########################################################################

Author: Ruby On Rails
Book: 2004
Year of Publication: 100
No of Copies: 0

##########################################################################
##########################################################################

Author: Learn Python Easy Way
Book: 1967
Year of Publication: 100
No of Copies: 0

##########################################################################
##########################################################################

Author: Harry Potter and the Sorcerer's stone
Book: 2012
Year of Publication: 150
No of Copies: 0

##########################################################################
##########################################################################

Author: Harry Potter and the Sorcerer's stone
Book: 3045
Year of Publication: 140
No of Copies: 0

##########################################################################
##########################################################################

Author: Harry Potter and the Sorcerer's stone
Book: 2013
Year of Publication: 150
No of Copies: 0

##########################################################################
##########################################################################

Author: Inferno
Book: 1993
Year of Publication: 453
No of Copies: 0

##########################################################################

為什么跳過第一行? 此代碼有什么問題?

fgets ( line, sizeof line, file)

此代碼跳過第一行。 刪除它會很好。

順便說一句, fscanf格式字符串"%[^\\n]s"不好。 將其替換為"%[^\\n]\\n" (或更好的是"%[^\\n]%*c" -請參閱@chux的注釋)以正確讀取行。 或者用fgets替換fscanf ,以在沒有這些時髦格式字符串的情況下執行相同的操作。

有類似的問題。 盡管這不是一個答案,但可以解決您的問題。

保持輸入文件的第一行為空,一切都會正常工作。@ anatolyg提到了原因。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM