Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <cstdlib>
- #include <iostream>
- using namespace std;
- class punkt
- {
- private:
- int x;
- int y;
- public:
- void wprowadz();
- void wyswietl();
- void przesun();
- void zmien();
- };
- int main(int argc, char *argv[])
- {
- punkt pkt;
- pkt.wprowadz();
- pkt.wyswietl();
- pkt.przesun();
- pkt.wyswietl();
- pkt.zmien();
- pkt.wyswietl();
- system("PAUSE");
- return EXIT_SUCCESS;
- }
- void punkt::wprowadz()
- {
- cout << "Wprowadz x i y " << endl;
- cin >> x >> y;
- }
- void punkt::wyswietl()
- {
- cout << "Dane:" << endl;
- cout << x << " "<< y << endl;
- }
- void punkt::przesun()
- {
- int p,h;
- cout << "Podaj o ile przesunac x: " << endl;
- cin >> p;
- cout << "Podaj o ile przesunac y: " << endl;
- cin >> h;
- x=x+p;
- y=y+h;
- }
- void punkt::zmien()
- {
- cout << "Podaj nowe x: " << endl;
- cin >> x;
- cout << "Podaj nowe y: " << endl;
- cin >> y;
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement