Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef CERCHIOO_H
- #define CERCHIOO_H
- class cerchioo
- {
- public:
- cerchioo();
- cerchioo(float r);
- virtual ~cerchioo();
- cerchio(float r);
- void setRaggio(float r);
- float getRaggio();
- void calcolaArea();
- void setArea(float r);
- float getArea();
- protected:
- private:
- float raggio;
- float circonferenza;
- float area;
- };
- #endif // CERCHIOO_H
Advertisement
Add Comment
Please, Sign In to add comment