Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. class Testclass{
  2.     bool status;
  3.   public:
  4.     void setStatus(bool);
  5.     void checkStatus();
  6. };
  7.  
  8. void Testclass::setStatus(bool s){
  9.     status = s;
  10. }
  11. void Testclass::checkStatus(){
  12.     if(status){cout<<"Machine is on";}
  13.     else{cout<<"Machine is off";}
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement