if-else.cpp 90 B

12345678
  1. int foo()
  2. {
  3. if (2)
  4. return 2;
  5. if (1 < 2)
  6. return 1;
  7. return 0;
  8. }