软件:dev c++
方法:每次选择1后,输入学生学号信息,并输出已写入学号信息的所有学生的学号信息。
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
#define New_node (stu*)malloc(sizeof(stu))
typedef struct student
{
int Student_ID;
struct student *next;
}stu;
void input(stu*R) //输入学生信息
{
stu *p=New_node; //p作为新节点存放p的数据
printf("\n请输入十位数的学号:\n");
scanf("%d",&p->Student_ID);
p->next=NULL;
R->next=p;
R=p;
}
void output(stu *L)
{
stu *p;
p=L->next;
while(p!=NULL)
{
printf("%d\n",p->Student_ID);
p=p->next;
}
}
main()
{
stu *L=New_node;
L->next=NULL; //建立头节点
stu *R=L; //尾指针指向头节点
while(1)
{
int i;
printf("请输入选择\n");
scanf("%d",&i);
switch(i)
{
case 1:input(R);
case 2:output(L);
}
}
}