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.

конструктор за присвояванеclass PStudent : public Student{public:PStudent(char * = “”, char * = “”, long = 0,double = 0, double = 0);void PrintPStudent() const;protected:double tax;};// дефиниция на конструктора на класа PStudentPStudent::PStudent(char *str, char *num, long facn,double u, double t) : Student(str, num, facn, u){tax = t;}// дефиниция на метода PrintPStudentvoid PStudent::PrintPStudent() const{PrintStudent();cout

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

Saved successfully!

Ooh no, something went wrong!