Advertisement
Need4Sleep

main.cpp (DailyC++) 7/22/12

Jul 23rd, 2012
467
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. /// http://www.cplusplus.com/forum/beginner/75558/
  2. #include <iostream>
  3. #include "PointType.h"
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     PointType point(3,4);
  10.     std::cout << point;
  11.     std::cout << std::endl;
  12.     Circle crcl(0,0,5);
  13.     std::cout << crcl;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement