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

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. class Student
  4.  {public:
  5.    Student(int n,float s):num(n),score(s){}
  6.    void change(int n,float s) {num=n;score=s;}
  7.    void display() {cout<<num<<" "<<score<<endl;}
  8.   private:
  9.    int num;
  10.    float score;
  11.  };
  12. int main()
  13. {Student stud(101,78.5);
  14.  void fun(Student&);
  15.  fun(stud);
  16.  return 0; 
  17. }
  18.  
  19. void fun(Student &stu)
  20. {stu.display();
  21.  stu.change(101,80.5);
  22.  stu.display();
  23. }
  24.