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

 

srp4379@lausd.net 1-logicbasics > inEitherOf2RangesAB
prev  |  next  |  chance

public boolean inEitherOf2RangesAB(int number)

Given a number, return true if it is either of 2 non-overlapping ranges.
Range1: 0-32 OR Range2: 200-300.
Return false if it isn't.


inEitherOf2RangesAB(32) → true
inEitherOf2RangesAB(0) → true
inEitherOf2RangesAB(33) → false

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

public boolean inEitherOf2RangesAB(int number) { }

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: 1

Copyright Nick Parlante 2017 - privacy