Advertisement
Draegon

Retangulo(.h)

Oct 28th, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. /*Código .h */
  2.  
  3. #ifndef RETANGULO_H
  4. #define RETANGULO_H
  5.  
  6. class Retangulo
  7. {
  8.  private:
  9.     int largura,altura;
  10.  public:
  11.     Retangulo(int l, int a){
  12.       largura = l;
  13.       altura = a;
  14.     }
  15.     int area();
  16. };
  17. #endif // RETANGULO_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement