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

 

pais@kinetigram.com > L59_closeFar
prev  |  next  |  chance

APCS Logic 5, Problem 9. Given three ints, a b c, return true if one of b or c is "close" (differing from a by at most 1), while the other is "far", differing from both other values by 2 or more. Note: Math.abs(num) computes the absolute value of a number.


L59_closeFar(1, 2, 10) → true
L59_closeFar(1, 2, 3) → false
L59_closeFar(4, 1, 3) → true

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

public boolean L59_closeFar(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: 200

Copyright Nick Parlante 2017 - privacy