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

 

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

public String monthHas30DaysB(int month)

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


monthHas30DaysB(1) → "Nope"
monthHas30DaysB(2) → "Nope"
monthHas30DaysB(3) → "Nope"

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

public String monthHas30DaysB(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