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

 

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

public boolean isSpringOrFallMonth(int month)

Given a number in the range 1-12 that represents a month in the year (1=Jan, 2=Feb, etc), return true if either SPRING or FALL occurs in that month, false otherwise. The months in which SPRING occurs are March-June. The months in which FALL occurs are September-December.




isSpringOrFallMonth(1) → false
isSpringOrFallMonth(2) → false
isSpringOrFallMonth(3) → true

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

public boolean isSpringOrFallMonth(int month) { }

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