lib.cpp 202 B

12345678910111213
  1. #if __cplusplus >= 201103L
  2. # error "invalid standard value"
  3. #endif
  4. int func(int A, int B)
  5. {
  6. // Verify that we have at least c++14
  7. if (A < B) {
  8. return A + B;
  9. } else {
  10. return B * A;
  11. }
  12. }