Your Java program completed a shortest-distance calculation…

Your Java program completed a shortest-distance calculation driving from  Arnold, MD to Myrtle Beach, SC. It showed that it will take 463 minutes long if travel by car. You would like your program to report the travel time to the user in an hour-minute format. You are working on a quick scatch in order to design this algorithm. Fill in the blanks below: “hours” should be: 463 / 60 which is “minutes” should be: 463 % 60 which is