5. (C++: Program Output (30 points)] In the spaces provided below each of the following programs, write only one of the following in order to indicate how the program performs: • The phrase "Does not compile" indicating the program will never compile. • The phrase "Won't finish" indicating that the program will enter an infinite loop, crash, and/or somehow not finish properly. The terminal output of the program when run using underscores to denote any spaces (i.e. 1.3.3.7). Assume that all necessary scaffolding is included and that no compiler flags (e.g. -Wall or -Werror) are used. (a) double phi (int n) { if (n > 1) return 1.0 + 1.0 / phi (n-1); return 1; int main() double answer; double i; for (unsigned int i = 1; i < 5; i++) { answer = phi(i); cout « i << " iterations, phi is: " « answer << end%; } return 0;

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter5: Repetition Statements
Section5.3: Interactive While Loops
Problem 6E: (Conversion) a. Write a C++ program to convert meters to feet. The program should request the...
icon
Related questions
Question
5. [C++: Program Output (30 points)] In the spaces provided below each of the
following programs, write only one of the following in order to indicate how the program
performs:
• The phrase "Does not compile" indicating the program will never compile.
• The phrase "Won't finish" indicating that the program will enter an infinite loop,
crash, and/or somehow not finish properly.
• The terminal output of the program when run using underscores to denote any
spaces (i.e. 1.3.3.7).
Assume that all necessary scaffolding is included and that no compiler flags (e.g. -Wall
or -Werror) are used.
(a) double phi(int n) {
if (n > 1) return 1.0 + 1.0 / phi(n-1);
return 1;
}
int main()
{
double answer;
double i;
for (unsigned int i = 1; i < 5; i++)
{
answer = phi(i);
cout « i « " iterations, phi is: " <« answer << endl;
}
return 0;
}
Transcribed Image Text:5. [C++: Program Output (30 points)] In the spaces provided below each of the following programs, write only one of the following in order to indicate how the program performs: • The phrase "Does not compile" indicating the program will never compile. • The phrase "Won't finish" indicating that the program will enter an infinite loop, crash, and/or somehow not finish properly. • The terminal output of the program when run using underscores to denote any spaces (i.e. 1.3.3.7). Assume that all necessary scaffolding is included and that no compiler flags (e.g. -Wall or -Werror) are used. (a) double phi(int n) { if (n > 1) return 1.0 + 1.0 / phi(n-1); return 1; } int main() { double answer; double i; for (unsigned int i = 1; i < 5; i++) { answer = phi(i); cout « i « " iterations, phi is: " <« answer << endl; } return 0; }
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Algebraic Expression
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning