Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kulikovaexam #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions kulikova.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#include <iostream>
#include <string>
using namespace std;
class Animal {
public:
Animal(string l, string b) {
location = l;
boundaries = b;
}
virtual void display() {
cout << "animal " << location << " " << boundaries << endl;
}
void sleep() {
cout << "animal sleep" << endl;
}
protected:
string location;
string boundaries;
};
class Lion : public Animal {
public:
Lion(string location, string boundaries) : Animal(location, boundaries) {};
void display() override
{
cout << "Lion is located in " << location << ", expecially in the " << boundaries << " Desert." << endl;
}
};
class Cat : public Animal {
public:
Cat(string location, string boundaries) : Animal(location, boundaries) {};
void display() override
{
cout << "Cat is located in " << location << ", namely in the " << boundaries << " region." << endl;
}
};

int main() {
Lion leva("Africa", "Sahara");
Cat Myrzik("Russia", "Ivanovo");

Myrzik.display();
leva.display();
return 0;
}