fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int nCount = 0;
  7. bool bIsNeed = true;
  8.  
  9. if( nCount == 0 && bIsNeed )
  10. {
  11. std::cout << "\"Not\" correct\n";
  12. }
  13.  
  14. if( (nCount == 0) && bIsNeed )
  15. {
  16. std::cout << "Correct\n";
  17. }
  18. return 0;
  19. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
"Not" correct
Correct