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

 

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

public boolean monthHas30DaysA(int month)

Given a number in the range 0-11 that represents a month in the year (0=Jan, 1=Feb, etc), return true if the month has 30 days, false otherwise. The 4 months with 30 days are April, June, September and November.


monthHas30DaysA(0) → false
monthHas30DaysA(1) → false
monthHas30DaysA(2) → false

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

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