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

 

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

public int monthHas30DaysC(int month)

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


monthHas30DaysC(1) → 0
monthHas30DaysC(2) → 0
monthHas30DaysC(3) → 0

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

public int monthHas30DaysC(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