id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

jebbert@volusia.k12.fl.us > test2024_09_19_APP1SLHL_increasing
prev  |  next  |  chance

Write a method that accepts three integer parameters a, b, and c. Return 'true' if those three integers are in strictly increasing order. For example, (5, 20, 4000) are in strictly increasing order, but (60, 60, 100) are NOT in strictly increasing order. In the second example, they are still in increasing order, just not in STRICTLY increasing order, which does not allow for the values to match. Look at the test data for more examples.


test2024_09_19_APP1SLHL_increasing(5, 7, 12) → true
test2024_09_19_APP1SLHL_increasing(9, 3, 20) → false
test2024_09_19_APP1SLHL_increasing(100, 100, 105) → false

...Save, Compile, Run (ctrl-enter)

public boolean test2024_09_19_APP1SLHL_increasing(int a, int b, int c) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 210

Copyright Nick Parlante 2017 - privacy