Challenge for C Basics
Challenge
a*b is considered powerful if (and only if) both of the following 2 conditions are met:
- a*b >= 2 * (b+3)
- a*b >= (a+b) * 2
return whether a*b is powerful or not.
(C has no boolean type, so 1
is used for true and 0
for false.)
Please sign in or sign up to submit answers.
Alternatively, you can try out Learneroo before signing up.