Question: Write a program will ask the user to enter a random number N between 0 and 20 , then generate the first Nth Fibonacci numbers
Write a program will ask the user to enter a random number N between 0 and 20, then generate the first Nth Fibonacci numbers from 1 to the Nth number. All numbers must added to a Queue called FiboQueue and a Stack called FiboStack. Print both FiboQueue and FiboStack, and the sum of all first N Fibonacci numbers. Java Programming.
The output will look like this:
Enter a random number between 0 and 20: 11
FiboQueue is: 1 1 2 3 5 8 13 21 34 55 89
FiboStack is: 89 55 34 21 13 8 5 3 2 1 1
The sum of the first 11th Fibonacci numbers is: 232
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
