Advertisement
TwITe

Untitled

Aug 4th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. bool && (bool cond1, bool cond2) {
  2.     if (!cond1) {
  3.         return false;
  4.     }
  5.     else {
  6.         if (cond2) {
  7.             return true;
  8.         }
  9.         else {
  10.             return false;
  11.         }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement