Question: write a program that calculates information about a sequence of tracks on an album. Write a Java main class called YourlastnameProgram6.java (with your actual

 write a program that calculates information about a sequence of tracks on an album.

 

Write a Java main class called YourlastnameProgram6.java (with your actual last name) that does the following:

  • Displays a welcome message with your name in it.
  • Prompts for and reads the lengths in minutes and seconds of 12 tracks of an album.
  • Stores the length of each track in seconds in an array. (Note: total seconds can be computed by multiplying the minutes by 60 and adding the seconds.)
  • Computes and displays the following:
    • The shortest track on the album and its length.
    • The longest track on the album and its length.
    • The total running time of the entire album.
    • The average length of a track on the album.
  • In the output all times should be in the standard minutes and seconds format with a colon in between. This should be done by a private static void function in the main class with the following header:
  • private static void displayTime(int totalSeconds)
  • The number of minutes can be calculated using the / and % operators. Note that if the number of seconds is less than 10, this function must display an extra zero after the colon. For example, a track with a total length of 185 seconds should have its length displayed as 3:05.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Heres the implementation of the YourLastNameProgram6 class as per your requirementsimport javautilScanner public class YourLastNameProgram6 public sta... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!