write a program in C++

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter8: I/o Streams And Data Files
Section: Chapter Questions
Problem 8PP: (Data processing) A bank’s customer records are to be stored in a file and read into a set of arrays...
icon
Related questions
Question

write a program in C++

Fibonacci Numbers
The Fibonacci numbers are defined by the sequence
f1 = 1
f2 = 1
fn = fn-1 + fn-2
Reformulate that as
5
t1 = 1;
t2 = 1;
nextTerm = t1 + t2;
After that, discard t1, which is no longer needed, and set t1 to t2 and t2 to nextTerm.
Repeat fnew an appropriate number of times. Implement a program that given a number
N, prints the first N numbers in the Fibonacci sequence. For example, given the number
8, the output is
The Fibonacci sequence: 1, 1, 2, 3, 5, 8, 13, 21

#include <10stream>
using namespace std;
int main() {
int n, t1
1, t2 = 1, nextTerm
0;
cout << "Enter the number of terms:
cin >> n;
cout << "Fibonacci Series: ";
for (int i 1; i e n; +i) {
WPrints the first oNO terms.
cout « tl < ,";
else if(i-
cout « t2 <« *,
else
//calculate next term
//setup t2,t for nexe rund
cout nextTerm ,
return 0;
Transcribed Image Text:#include <10stream> using namespace std; int main() { int n, t1 1, t2 = 1, nextTerm 0; cout << "Enter the number of terms: cin >> n; cout << "Fibonacci Series: "; for (int i 1; i e n; +i) { WPrints the first oNO terms. cout « tl < ,"; else if(i- cout « t2 <« *, else //calculate next term //setup t2,t for nexe rund cout nextTerm , return 0;
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Algebraic Expressions
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