about | help | code help+videos | done | prefs |
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) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 210
Copyright Nick Parlante 2017 - privacy