-4

我已经尝试了下面的书面代码,但它没有用。我可以知道为什么吗?是否可以通过结构指针扫描结构成员?

#include<stdio.h>
#include<conio.h>
struct book
{
  int isdn;
  float price;
 };
 struct book b,*ptr;
 void main()
 {
   clrscr();
   b.isdn=10;
   b.price=150.75;
   printf("\n%d %f",b.isdn,b.price);
   ptr=&b;
   printf("\n%d %f",ptr->isdn,ptr->price);
   scanf("%d %f",&ptr->isdn,&ptr->price); //this statement do not work,why?
   printf("\n%d %f",ptr->isdn,ptr->price);
   getch();
 }
4

1 回答 1

0

该代码确实有效,而 scanf 确实以这种方式工作。我会推荐你​​读一些

您是否阅读了有关如何工作的文档scanf()

您需要完全按照格式字符串指定的方式传入数据。所以在你的情况下:

scanf("%d %f",&ptr->isdn,&ptr->price); 

您需要传入一个整数、一个空格和一个浮点数,例如:

5 2.3

然后ptr->isdn将有 5 个,ptr->price将有 2.3 个。如果您没有发生这种情况,那么也许这不是您的全部代码,或者您错过了复制的内容?

于 2012-12-25T21:22:11.810 回答