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

 

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

Write a program that returns 'true' if the three input parameters are in strictly increasing order. Return 'false' otherwise. Strictly increasing order means that each successive parameter is greater than the previous parameter. For example, 5, 9, 2141 IS in strictly increasing order. However, 2, 17, 15 is NOT. Neither is 5, 5, 6. Notice that -7, -3, -1 IS in increasing order. The input parameters can contain any combination of positives, negatives, or zero.


nov3_20217_APSLHL_increasing(5, 12, 142) → true
nov3_20217_APSLHL_increasing(235, 214, 264) → false
nov3_20217_APSLHL_increasing(9, 5, 4) → false

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

public boolean nov3_20217_APSLHL_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