c语言链表问题:为什么我写的这个程序只能输出最后一个的输入?

c语言链表问题:为什么我写的这个程序只能输出最后一个的输入?#include<stdio.h>#include<malloc.h>structstudent{intnum... c语言链表问题:为什么我写的这个程序只能输出最后一个的输入?#include<stdio.h>
#include<malloc.h>
struct student
{
int num;
float score;
struct student *next;
};
struct student *f();
void print(struct student *head);
int n;
void main()
{
struct student *stu;
stu=f();
print(stu);
}
struct student *f()
{
struct student *head;
struct student *p1,*p2;
p1=p2=(struct student *)malloc(sizeof (struct student));
printf("请输入学号:");
scanf("%d",&p1->num);
printf("请输入成绩:");
scanf("%f",&p1->score);
head=NULL;
n=0;
while (p1->num)
{
n++;
if (n=1)
{
head=p1;
}
else
{
p2->next=p1;
}
p2=p1;
p1=(struct student *)malloc(sizeof (struct student));
printf("请输入学号:");
scanf("%d",&p1->num);
printf("请输入成绩:");
scanf("%f",&p1->score);
}
p2->next=NULL;
return head;
}
void print(struct student *head)
{
struct student *p;
printf("共输入%d位学生\n",n);
p=head;
do
{ printf("学号:%d\t成绩:%f\n",p->num,p->score);
p=p->next;
}
while (p);
}
展开
 我来答
百度网友b7c2054
2016-10-27 · TA获得超过284个赞
知道小有建树答主
回答量:293
采纳率:50%
帮助的人:206万
展开全部
if (n=1) 改为if(n==1)
追问
……
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式