wes d2a2ba9e15 first commit | 4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago | |
code.cpp | 4 years ago | |
unitTest.cpp | 4 years ago |
by CppPythonDude tags: logic, language_fundamentals
An int boolean is same as a normal boolean, just 1 = true and 0 = false. Make a function that returns an int boolean opposite of an int boolean given (flip the int boolean). Examples flipIntBool(1) ➞ 0 flipIntBool(0) ➞ 1 Notes N/A
An int boolean is same as a normal boolean, just 1 = true
and 0 = false
.
Make a function that returns an int boolean opposite of an int boolean given (flip the int boolean).
flipIntBool(1) ➞ 0
flipIntBool(0) ➞ 1
N/A