Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // pointCircle.cpp : This file contains the 'main' function. Program execution begins and ends there.
- //
- #include <iostream>
- #include<string.h>
- using namespace std;
- class Point
- {
- private:
- int x;
- int y;
- string name;
- public:
- Point()
- {
- x = 0;
- y = 0;
- name = "";
- }
- void setX(int pointX)
- {
- x = pointX;
- }
- int getX()
- {
- return x;
- }
- void setY(int pointY)
- {
- y = pointY;
- }
- int getY()
- {
- return y;
- }
- void setName(string pointName)
- {
- name = pointName;
- }
- string getName()
- {
- return name;
- }
- };
- class Circle
- {
- Point p;
- int r;
- int pointX, pointY;
- string pointName;
- public:
- Circle()
- {
- cout << "Enter radius: ";
- cin >> r;
- cout << endl;
- cout << "Enter name: ";
- cin >> pointName;
- p.setName(pointName);
- cout << endl;
- cout << "Enter x: ";
- cin >> pointX;
- p.setX(pointX);
- cout << endl;
- cout << "Enter y: ";
- cin >> pointY;
- p.setY(pointY);
- cout << endl;
- }
- void setR(int radius)
- {
- r = radius;
- }
- int getR()
- {
- return r;
- }
- void getPointParamets()
- {
- cout << "Radius: " << getR() << endl;
- cout << "X: " << p.getX() << endl;
- cout << "Y: " << p.getY() << endl;
- cout << "Name: " << p.getName() << endl;
- }
- };
- int main()
- {
- Circle* arr[5];
- for (int i = 0; i < 5; i++)
- {
- arr[i] = new Circle();
- }
- for (int i = 0; i < 5; i++)
- {
- if (arr[i]->getR() > 10)
- {
- arr[i]->getPointParamets();
- }
- }
- }
- // Run program: Ctrl + F5 or Debug > Start Without Debugging menu
- // Debug program: F5 or Debug > Start Debugging menu
- // Tips for Getting Started:
- // 1. Use the Solution Explorer window to add/manage files
- // 2. Use the Team Explorer window to connect to source control
- // 3. Use the Output window to see build output and other messages
- // 4. Use the Error List window to view errors
- // 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
- // 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement