Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. class Point3D
  6. {
  7. int x, y, z;
  8. void print();
  9.  
  10.  
  11. };
  12.  
  13. class Point2D
  14. {
  15. int x, y;
  16. void print();
  17.  
  18.  
  19.  
  20. };
  21. int main()
  22. {
  23.  
  24.  
  25.  
  26. system("PAUSE");
  27. return 0;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement