Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <string>
- using namespace std;
- #ifndef COIN_H
- #define COIN_H
- class Coin
- {
- private:
- string sideUp;
- public:
- Coin();
- void toss();
- string getSideUp()
- { return sideUp; }
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement