Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create a java program using the following requirements The numbers below are from the march.text Write a reference class called Song. It represents a simple
Create a java program using the following requirements
The numbers below are from the march.text
Write a reference class called Song. It represents a simple song consisting of two sequences, one of durations and one of frequencies. Here is its API: public Song (): this constructor creates a Song object with empty duration and frequency sequences. public void addFrequency (double frequency): this method adds a frequency to the sequence of frequencies. public void addDuration (double duration): this method adds a duration to the sequence of durations. public void play (): this plays the sequence of durations and frequencies. It does this by indexing through both sequences, calling the playTone method on each individual duration and frequency. In addition to those public methods above, place in your class a private version of the playTone method from an earlier assignment. Its first line will be: private void playTone(double frequency, double duration) {Test your class by placing my PlaySong.java program into your song package. My program creates a Song object, reads a series of durations and frequencies from a file into it, and then calls the play () method. You will also need to copy my march. txt file into your Eclipse data folder. import stdlib.StdIn; public class PlaySong {public static void main(String[] args) {Song song = new Song(); StdIn.fromFile("data/march.txt"); while (!StdIn.isEmpty()) {double duration = StdIn.readDouble(); double frequency = StdIn.readDouble(); song.addDuration(duration); song.addFr|equency(frequency);} song.play();} 0.25 195.998 0.10 0 0.25 195.998 0.10 0 0.25 195.998 0.10 0 0.1875 164.814 0.10 0 0.1875 233.082 0.10 0 0.25 195.998 0.10 0 0.1875 164.814 0.10 0 0.09 233.082 0.10 0 0.50 195.998 0.10 0 0.25 293.665 0.10 0 0.25 293.665 0.10 0 0.25 293.665 0.10 0 0.1875 329.628 0.10 0 0.1875 233.082 0.10 0 0.25 184.997 0.10 0 0.1875 164.814 0.10 0 0.1875 233.082 0.10 0 0.50 207.652 0.10 0
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started