Create an object to store information about a CD. The object should store this information:
1.The title of the CD
2.The artist of the CD(assume either just one, or "Various")
3.A list of tracks(use an array of 25 strings)
The Developer should be able to do the following with a CD object:
1.Set or Get the title or artist of the CD
2.Set or get track i of the CD-i.s., SetTrack(3, "Symphony in D Minor") or GetTrack(4)
3.Get the total number of tracks
This sounds like a homework problem. Try writing the code yourself and when you get stuck, ask specific questions. People here will bend over backwards to help, but they won't write the code for you.