ECE 325 Assignment 1-Using Standard Libraries Solved

30.00 $

Category:

Description

5/5 - (1 vote)
A programmer spends a great deal of their time using other people’s solutions including predefined solutions which are part of Java. This implies reading their documentation which is always less than perfect! In fact, the documentation is often terrible!! However, rebuilding existing solutions is seldom cost effective and hence using pre-existing solutions is a must for the professional programmer.

So let’s have a go …

Write a piece of Java code, which tells you how old you are — sounds simple. In other words, you fill the days method (You can use Eclipse to do it if you like), and it outputs:

Birthday: January 1 2000; today: June 15 2000 — You are 166 days old.
Birthday: January 1 3000; today: June 15 2000 — Wrong birthday!

Clearly, the problem gets more complex as the years progress due to leap years.

To write this program you must use Java’s calendar classes. Good grief, just look at that documentation!!

(ummmm… are there other classes that I need to use??? Good question to ponder)

Remember programming is actually more about reading than writing, and class Calendar (do I need to know what a Gregorian calendar is?) is certainly an eye-full.

  • Assignment1-wztzpi.zip