Programs
Лабораторная работа №2
Вариант 1
Главная
Здесь ошибка
Код:
#include "stdafx.h" #include #include using namespace std; #define MAXLINE 80 #include "stdafx.h" #include #include using namespace std; class FIRST { void plus() { cout << "a+b = " << a+b << endl; } void minus() { cout << "a-b = " << a - b << endl; } int a, b; protected: int *c=&a, *d=&b; void go() { cout << "go" << endl; } public: int k; static int f; int goa(int l) { a = l; return 0; } int gob(int l) { b = l; return 0; } void rez() { plus(); minus(); } }; int main() { setlocale(LC_ALL, "Russian"); FIRST* object = new FIRST; object->goa(1); object->gob(2); object->rez(); FIRST* object2 = new FIRST; delete(object2); delete(object); return 0; }