Advertisement
Draegon

Retangulo.cpp

Nov 24th, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. // ARQUIVO .CPP DA CLASSE RETANGULO.
  2.  
  3. #include <iostream>
  4. #include "Retangulo.h"
  5.  
  6. using namespace std;
  7.  
  8. Retangulo::Retangulo(int l, int a)
  9. {
  10.      largura = l;
  11.      altura = a;
  12. }
  13. int Retangulo::area()
  14. {
  15.    return largura*altura;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement