Guest User

Untitled

a guest
Oct 18th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. int main () {
  2. CRectangle rect; //Make a CRectangle object called rect
  3. rect.set_sides (12,24); //Use one of its methods for input
  4. cout << "area: " << rect.area () << "\n"; //Use another method for output.
  5. return 0;
Add Comment
Please, Sign In to add comment