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

 

tmhscs@gmail.com datetime > dateTime_fullDateFormat
prev  |  next  |  chance

Given integers for a year, month, and day, format the date using the FULL format style. For example, 2022,1,1, should output "Saturday, January 1, 2022".


dateTime_fullDateFormat(2022, 1, 1) → "Saturday, January 1, 2022"
dateTime_fullDateFormat(2022, 1, 2) → "Sunday, January 2, 2022"
dateTime_fullDateFormat(2022, 1, 3) → "Monday, January 3, 2022"

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

public String dateTime_fullDateFormat(int y, int m, int d) { }

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

Post-solution available

Copyright Nick Parlante 2017 - privacy