Advertisement
Draegon

Retangulo.h

Nov 24th, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. // ARQUIVO .H DA CLASSE RETANGULO
  2. #ifndef RETANGULO_H
  3. #define RETANGULO_H
  4.  
  5. class Retangulo
  6. {
  7.  private:
  8.     int largura,altura;
  9.  public:
  10.     Retangulo(int l, int a);
  11.     int area();
  12. };
  13. #endif // RETANGULO_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement