Kotlinlearncs.online LogoJava
Return to List

Solve: In Order

Imported By: Geoffrey Challen
/ Version: 2021.6.0

Given three ints first, second, and third, return true if second is greater than first and third is greater than second. However, if secondOK is true, second does not need to be greater than first.

boolean inOrder(int first, int second, int third, boolean secondOK) {
return false; // You may need to remove this starter code
}

Related Lessons

Stuck? You may find these lessons helpful: