| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 216 人关注过本帖
标题:[求助]结构体的问题 到底哪错了~~
只看楼主 加入收藏
linyu620
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-10-3
收藏
 问题点数:0 回复次数:0 
[求助]结构体的问题 到底哪错了~~

应该录入三组数的,可是录入一组数就不让录入了?
# include<stdlib.h>
# define NULL 0
# define LEN sizeof(struct ren)
struct ren{
long num;
float fen;
struct ren *next;
};
int n;
struct ren *create(void)
{struct ren *p1,*p2,*head;
n=0;
p1=p2=(struct ren *)malloc(LEN);
scanf("%ld,%f",&p1->num,&p1->fen);
head=NULL;
while(p1->num!=0)
{
n=n+1;
if(n==1) head=p1;
else p2->next=p1;
p2=p1;
p1=(struct ren *)malloc(LEN);
scanf("%ld,%f",&p1->num,&p1->fen);
}
p2->next=NULL;
return(head);
}

void print(struct ren *head)
{struct ren *p;
p=head;
if(head!=NULL)
do
{
printf("%ld %5.1f\n",p->num,p->fen);
p=p->next;
}
while(p!=NULL);
}
main()
{ struct ren *head;
head=create();
print(head);
}
提示错误 scanf : floating point formats not linked
Abnormal program termination

2007-10-21 09:52
快速回复:[求助]结构体的问题 到底哪错了~~
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025288 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved