/*
* 程序的版权和版本声明部分
* Copyright (c)2012, 烟台大学计算机学院学生
* All rightsreserved.
* 文件名称: fun.cpp
* 作 者:王心垚
* 完成日期:2013 年3月 8日
* 版本号: v1.0
* 对任务及求解方法的描述部分:建立和输出一个简单的链表
* 输入描述:略
* 问题描述:略
* 程序输出:如下
*/
#include<iostream>
using namespace std;
struct Student
{ long num;
float score;
struct Student *next;
};
int main( )
{ Student a,b,c,*head,*p;
a. num=31001; a.score=89.5;
b. num=31003; b.score=90;
c. num=31007; c.score=85;
head=&a;
a.next=&b;
b.next=&c;
c.next=NULL;
p=head;
do
{ cout<<p->num<<" ";
cout<<p->score<<endl;
p=p->next;
} while(p!=NULL);
return 0;
}
运行结果: