1

Тема: Крапка на площині.

Всім привіт. Потрібна допомога по завданню:
Написати класс, який реалізує крапку на площині, реалізувати методом введення, виведення, масштаб, зміщення(2 закриті змінні). Підкажіть, як почати. Дякую.

2

Re: Крапка на площині.

ProgNob написав:

Всім привіт. Потрібна допомога по завданню:
Написати класс, який реалізує крапку на площині, реалізувати методом введення, виведення, масштаб, зміщення(2 закриті змінні). Підкажіть, як почати. Дякую.

можна почати з гугла:
https://www.google.com.ua/search?num=10 … n-yWbO-S5U

Search Results
C++ Point Class I - Sandbox
sandbox.mc.edu/~bennet/cs220/codeex/cl0_cc.html
#include <iostream> #include <math.h> using namespace std; // Class to represent points. class Point { private: double xval, yval; public: // Constructor uses ...
Creating A Point Class - C And C++ | Dream.In.Code
www.dreamincode.net › Dream.In.Code › Programming Help › C and C++
Apr 19, 2011 - 5 posts - 3 authors
Create a class called Point for performing arithmetic with x/y coordinates in a system. Test your class with the pa8.cpp program included below.
Point object - C++ Forum - Cplusplus.com
www.cplusplus.com › Forum › Beginners
Jun 4, 2012 - 20 posts - 5 authors
I am new in C++ and I have to make an assignment and I am a bit lost with ... They give me the specification of class Point which contains the ...
Point Class - Geometry Based Programs
26 Nov 2016
Point and Line Class
25 Feb 2014
Inheritance and Member Function Overload
19 Feb 2014
Rectangle Class - Using a class as membe
5 May 2009
More results from www.cplusplus.com
Point and Line class in c++? - Stack Overflow
stackoverflow.com/questions/564877/point-and-line-class-in-c
Feb 19, 2009 - Your example shouldn't compile, because you're mixing pointers ... Whether or not the Point members of your line class are pointers or not ...
C++ templates - Simple Point Class - Stack Overflow

Подякували: LoganRoss1

3

Re: Крапка на площині.

ProgNob написав:

Підкажіть, як почати. Дякую.

Почніть з читання книжки на тему, яка вам тут незрозуміла. Тут вам знадобляться C++ і геометрія.