12.07.2015 Views

C++ - VideoTutorials-bg.com

C++ - VideoTutorials-bg.com

C++ - VideoTutorials-bg.com

SHOW MORE
SHOW LESS
  • No tags were found...

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

}// дефиниране на клас PStudentclass PStudent : public Student{public:PStudent(char * = "", char * = "", long = 0,double = 0, double = 0);PStudent& operator=(const PStudent& st);void PrintPStudent() const;protected:double tax;};PStudent::PStudent(char *str, char *num, long facn,double u, double t) : Student(str, num, facn, u){tax = t;}PStudent& PStudent::operator=(const PStudent& st){if(this!=&st){Student::operator=(Student(st));tax = st.tax;}return *this;}void PStudent::PrintPStudent() const{PrintStudent();cout

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!