Advertisement
Guest User

how to tie a noose

a guest
Mar 27th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int dog = 0;
  7. int cat = 0;
  8. if (dog && cat)
  9. cout<<"you have a dog and a cat"<<endl;
  10. if (dog || cat)
  11. cout<<"you have either a dog or a cat"<<endl;
  12. else
  13. cout<<"you aint got shit nigga"<<endl;
  14.  
  15. return 0;
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement