Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I need this answered asap. You can use the libraries seen below here only. Also only fill in the your code goes here part.
I need this answered asap. You can use the libraries seen below here only. Also only fill in the " your code goes here part".
#include
#include
#include
#include
using namespace std;
// YOUR CODE GOES HERE
int main()
{
int num;
int fibb;
cout
cin >> num;
cout
if ((num 22))
cout
else {
fibb = fibonacci(num);
cout
cout
}
}
2.10 Problem 12.3 By definition, the first two numbers in the Fibonacci sequence are 0 and 1, and each subsequent number is the sum of the previous two, for example, the first 6 Fibonacci numbers are 0, 1,1,2, 3,5. Write a program that asks the user for a number between 5 and 22 (inclusive) and then displays that many Fibonacci numbers. YOU MUST write a function called fibonacci which is called from main as shown in the template. Note that the function adds up each of the Fibonacci numbers and returns the last one to main. Add a newline every 10th output value. For example Please enter a number between 5 and 22: 12 0112 35813 21 34 55 89 Fibonacci # 12 is 144 LAB 1/22 ACTIVITY 12.10.1: Problem 12.3
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