Advertisement
TwITe

Untitled

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