Answer:
int main() {
double f0;
const double r = pow(2, 1.0/12);
cout << "Enter start frequency: ";
cin >> f0;
cout << fixed << setprecision(2);
for(int n=0; n<5; n++) {
cout << f0*pow(r, n) << " ";
}
return 0;
}
Step-by-step explanation:
In the description, some to-the-power notations were dropped, see code on how to resolve.