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

 

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

public boolean isSunnmerOrWinterMonth(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 SUMMER or WINTER occurs in that month, false otherwise. The months in which SUMMER occurs are June-September. The months in which WINTER occurs are December-March.


public boolean isSummerOrWinterMonth(int month) {
  boolean summerMonth = false;
  if (6 <= month && month <= 9) {
    summerMonth = true;
  }

  boolean winterMonth = false;
  if ( month == 12 || (1 <= month && month <= 3) ) {
    winterMonth = true;
  }

  boolean summerOrWinterMonth = false;
  if (summerMonth || winterMonth) {
    summerOrWinterMonth = true;
  }
  return summerOrWinterMonth;
}


isSummerOrWinterMonth(1) → true
isSummerOrWinterMonth(2) → true
isSummerOrWinterMonth(3) → true

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

public boolean isSummerOrWinterMonth(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