Question Details:

Write a program to find and print a Fibonacci sequence of numbers. The Fibonacci sequence is defined as follow:

Fn = Fn-2 + Fn-1, n >= 0

F0 = 0, F1 = 1, F2 = 1

Your program should prompt the user to enter a limit and indicate whether the last number in the sequence printed is either even or odd.

Here is what the user will see when the program is executed:...