Write a program to find the date of the monday which comes after the third friday of the nearest month.
Input : yyyy,mm,dd,Day
Output : yyyy,mm,dd,Monday
Honestly, I don't know how to start...... please help
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Write a program to find the date of the monday which comes after the third friday of the nearest month.
Input : yyyy,mm,dd,Day
Output : yyyy,mm,dd,Monday
Honestly, I don't know how to start...... please help
Welcome to the forum
Break the problem down into subsets.
# create a main method
# read the requested input from the keyboard
# manually work out on pen and paper what the date would be
# create a logical expression to represent that
Wishes Ada xx
If to Err is human - then programmers are most human of us all.
"The Analytical Engine offers a new, a vast, and a powerful language . . .
for the purposes of mankind."
— Augusta Ada Byron, Lady Lovelace (1851)
Look at the Calendar class. It has lots of useful methods.
If you don't understand my answer, don't ignore it, ask a question.
Thank you Ada Lovelace and Norm .Yes, Im going through calendar class and trying to program