116k views
3 votes
reate or find a song online and use arrays to store the notes and durations. Then add a light show. The lights can be linked to a specific tone or you can just make a random colour. Level 4: Menu system. Create a menu on the monitor that gives the user an option between 3 songs. Have each song and the menu stored in different methods where the only line in your main function is runMenu();

1 Answer

5 votes

Final answer:

The student's question is about writing a program that uses arrays to manage song notes and durations, creates a light show, and has a menu system to choose between songs, with all the complexity handled within specific functions or methods.

Step-by-step explanation:

The question involves writing a program that stores notes and durations of songs using arrays, implementing a light show linked to the notes, and creating a menu system for a user to select between different songs. This task is related to programming, most likely requiring knowledge of arrays, conditional statements, and possibly loops for creating the menu system and synchronizing the lights with the music. The program must be structured so that the main function executes a single command, runMenu();, indicating that the logic for the menu system and song selection is encapsulated within other functions or methods.

User Ususer
by
7.8k points