xt7-7.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. #define NULL 0     
  4. struct student
  5. {long num;
  6.  float score;
  7.  student *next;
  8. };    
  9. int n;                    
  10. void print(student *head)
  11.  {student *p;
  12.   cout<<"Now,These "<<n<<" records are:"<<endl;
  13.   p=head;
  14.   if(head!=NULL)
  15.   do
  16.     {cout<<p->num<<"  "<<p->score<<endl;
  17.      p=p->next;
  18. }while(p!=NULL);
  19. }