fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. bool b1 = !true;
  8. bool b2 = !b1 && false;
  9. bool b3 = b2 || true;
  10.  
  11. if(b3)
  12. cout << "true";
  13. else
  14. cout << "false" ;
  15. }
  16.  
  17.  
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
true