You are burning some music CDs for a party. You\'ve arranged a list of songs in
ID: 3630233 • Letter: Y
Question
You are burning some music CDs for a party. You've arranged a list of songs in the order in which you want to play them. However, you would like to maximize your use of space on the CD, which holds 80 minutes of music. To do so, you want to figure out the total time for a group of songs and see how well they fit. Write a design and a c++ program to help you accomplish this task. The data are on file songs.dat. The time is entered as seconds. For exmple, if a song takes 7 minutes and 42 seconds to play, the data entered for that song would be 462. After all the data has been read, the application should print a message indicating time remaining on the CD. The output should be in the form of a table with columns and headings written on a file.Explanation / Answer
Hi hope his will help u PLEASE RATE #include #include #include using namespace std; int main() { int songMinutes = 0; int songSeconds = 0; int timeSeconds = 0; int totalMinutes = 0; int totalSeconds = 0; int minutesLeft = 0; int secondsLeft = 0; int totalTime = 0; int usedTime = 0; int current = 0; int currentMinutes = 0; int currentSeconds = 0; int usedMinutes; int usedSeconds; int seconds = 0; int newtotalTime = 0; int songNumber; bool ok = true; ifstream inData; inData.open("f:\songs.dat"); if ( !inData ) { coutRelated Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.