Question: Write a program that starts with x and y defined in the data section. x should be set to a smallish number like 10
Write a program that starts with x and y defined in the data section. x should be set to a smallish number like 10 or 15. y should be 0. Write code to set y to the xth term of the Fibonacci series. That is the pattern where the zeroth term is 0 and the first term is 1. Each other term is the sum of the previous two terms. Term 3 Value 2 0 0 1 1 2 1 4 3 5 5 6 8 7 13. 8 21 *** *** If I change x to 0 running the program should produce 0 in y; if I change x to 6 your program should end up storing 8 into y, etc....
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
