Question: write in c programming On a piano, a key has a frequency, say fo. Each higher key (black or white) has a frequency of fo


write in c programming
On a piano, a key has a frequency, say fo. Each higher key (black or white) has a frequency of fo *r", where n is the distance (number of keys) from that key, and ris 2(1/12). Given an initial key frequency (an integer), output that frequency and the next 4 higher key frequencies. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: printf("%0.21f", yourValue); Ex: If the input is: 440.0 (which is the A key near the middle of a piano keyboard), the output is: 440.00 466.16 493.88 523.25 554.37 Note: Use one statement to computer = 2(1/12) using the pow function (remember to include the math library). Then use that r in subsequent statements that use the formula fn = fo * th with n being 1, 2, 3, and finally 4. 3691822369558 3707 1 #include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
