#include "stdio.h"
#include<malloc.h>
#include<string.h>
#define LEN sizeof(struct student)
struct student{
int num;
int score;
struct student*next;
};
struct student*create()
{
char ch;
struct student *head;
struct student*p1,*p2;
int a=0;
printf("是否输入新数据:\n");
while(toupper(ch=getche())=='Y');
{
p1=(struct student*)malloc(LEN);
printf("\n请输入:");
scanf("%d%d",&p1->num,&p1->score);
printf("是否输入新数据:\n");
a++;
if(a==1) head=p1;
else p2->next=p1;
p2=p1;
p1->next=NULL;
}
return(head);
}
void print(struct student *head)
{
struct student *p;
p=head;
while(p!=NULL)
{
printf("\n学号:%d,成绩:%d",p->num,p->score);
p=p->next;
}
}
void main( ){
struct student *stu;
stu=create();
print(stu);
}
zy112
lay3
相关分类