求解这道c语言的题目答案啊(题目见图片)

看第五题... 看第五题 展开
 我来答
新千奇安0T
2013-06-30
知道答主
回答量:9
采纳率:0%
帮助的人:7.7万
展开全部
#include <stdio.h>
#include <stdlib.h>
typedef struct _Score
{
int id;
float Mscore;
struct _Score *next;
}Score;
Score *head;
int main()
{
int dangqian=0;
int count=2;
Score *Last;
Score *temp;
head=(Score *)malloc(sizeof(Score));
printf("Input Student Id:");
scanf("%d",&head->id);
printf("\n");
printf("Input Student Score");
scanf("%f",&head->Mscore);
Last=head;
head->next=(Score *)malloc(sizeof(Score));
Last=head->next;
printf("Input Student Id:");
scanf("%d",&Last->id);
printf("\n");
printf("Input Student Score");
scanf("%f",&Last->Mscore);
Last->next=NULL;
temp=head;
//print
dangqian=0;
while(dangqian<count)
{
printf("id Number:%d",temp->id);
printf("\n");
printf("Score:%f",temp->Mscore);
dangqian++;
temp=temp->next;
}
return 0;
}

不知道能不能正常运行哦。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式