Advertisement
tei123

przesun xdxdxdxdxdx

May 18th, 2016
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. class punkt
  7. {
  8. private:
  9. int x;
  10. int y;
  11. public:
  12. void wprowadz();
  13. void wyswietl();
  14. void przesun();
  15. void zmien();
  16. };
  17.  
  18.  
  19. int main(int argc, char *argv[])
  20. {
  21. punkt pkt;
  22. pkt.wprowadz();
  23. pkt.wyswietl();
  24. pkt.przesun();
  25. pkt.wyswietl();
  26. pkt.zmien();
  27. pkt.wyswietl();
  28. system("PAUSE");
  29. return EXIT_SUCCESS;
  30. }
  31.  
  32.  
  33.  
  34.  
  35. void punkt::wprowadz()
  36. {
  37. cout << "Wprowadz x i y " << endl;
  38. cin >> x >> y;
  39. }
  40. void punkt::wyswietl()
  41. {
  42. cout << "Dane:" << endl;
  43. cout << x << " "<< y << endl;
  44. }
  45.  
  46. void punkt::przesun()
  47. {
  48. int p,h;
  49. cout << "Podaj o ile przesunac x: " << endl;
  50. cin >> p;
  51. cout << "Podaj o ile przesunac y: " << endl;
  52. cin >> h;
  53. x=x+p;
  54. y=y+h;
  55. }
  56.  
  57. void punkt::zmien()
  58. {
  59. cout << "Podaj nowe x: " << endl;
  60. cin >> x;
  61. cout << "Podaj nowe y: " << endl;
  62. cin >> y;
  63. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement