/*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).*/ int flipIntBool(int baseIntBoolean) { // haha I DIDNT CODE! return !baseIntBoolean; }