fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. int x = 100;
  5. if(not (5 == 4))
  6. std::cout << "Not..\n";
  7. if(x > 90 and x < 200)
  8. std::cout << "Even and\n";
  9. if(x == 100 or x == 90)
  10. std::cout << "Even or\n";
  11. }
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
Not..
Even and
Even or