为什么这段程序运行出错

structequ*input(){structequ*head;structequ*p1,*p2;n=0;p1=p2=(structequ*)malloc(N);pri... struct equ *input()
{
struct equ *head;
struct equ *p1,*p2;
n=0;
p1=p2=(struct equ *)malloc(N);
printf("Please input 'number name model price date people\n");
printf("After that please input the remark\n");
printf("After you finishing ,please input 'end 0 0 0 0 0 0'\n");
while(1)
{
n=n+1;
scanf("%s%s%s%f%f%s",p1->num,p1->name,p1->model,&p1->price,&p1->date,p1->people);
if (strcmp(p1->num,"end")==0 )
{
free(p1);
break;
}
fflush(stdin);
gets(p1->remark);
if ( n==1 )
head=p1;
else
p2->next=p1;
p2=p1;
}
p2->next=NULL;
printf("The end\n");
return(head);
}
struct equ *add(struct equ *h)
{
struct equ *ne,*p3,*p4,*p0;
ne=input();
p3=h;
p0=ne;
if(h=NULL)
{
h=p0;
}
else
{
while(p3->next!=NULL)
{
p4=p3;
p3=p3->next;
}
p3->next=p0;
}
return(h);
}
展开
 我来答
匿名用户
2014-12-23
展开全部
struct equ *input()
{
struct equ *head;
struct equ *p1, *p2;
n = 0;

printf("Please input 'number name model price date people\n");
printf("After that please input the remark\n");
printf("After you finishing ,please input 'end 0 0 0 0 0 0'\n");
while (1)
{
p1 =  (struct equ *)malloc(sizeof(struct equ));//
n = n + 1;
scanf("%s%s%s%f%f%s", p1->num, p1->name, p1->model, &p1->price, &p1->date, p1->people);
if (strcmp(p1->num, "end") == 0)
{
free(p1);
break;
}
fflush(stdin);
gets(p1->remark);
if (n == 1)
head = p1;
else
p2->next = p1;
p2 = p1;
}
p2->next = NULL;
printf("The end\n");
return(head);
}
struct equ *add(struct equ *h)//链接
{
struct equ *ne, *p3, *p4, *p0;
ne = input();
p3 = h;
p0 = ne;
if (h == NULL)//
{
h = p0;
}
else
{
while (p3->next != NULL)
{
p4 = p3;
p3 = p3->next;
}
p3->next = p0;
}
return(h);
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式