<Prob 04-2> https://drive.google.com/open?id=15udvQpHWDpDA38AzSl6zncq1ksTmymYB -main.cpp 1 2 3 4 5 6 7 8 9 #include < iostream > #include "header\class.h" int main( int argc, char const * argv[]) { Ring r( 1 , 1 , 4 , 2 , 2 , 9 ); r.ShowRingInfo(); return 0 ; } Colored by Color Scripter cs -class.h 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 #pragma once class Point { private : int xpos, ypos; public : Point( const int x, const int y); ~Point(); void ShowPointInfo() const ; ...
댓글
댓글 쓰기