Question: Please help me write this program: print the Fibonacci sequence up to N terms using infinite while loops and using break to stop the loop.
Program will ask user for an integer, N and validates that Nis 0. (Does not need to validate data type). If validation fails, tell the user what is wrong and ask for input again (i.e. lecture on intuitive input validation) Program will output the series to the Nth term using 'infinite do-while or while loop.) Program will ask if the user wants to try again for a different N. If the user does, the program repeats. If not, the program exits. Draw the flow chart of the program, or comment in some pseudo-code. Fibonacci series is a series of numbers where the current number is the sum of the previous two terms. i.c. 0, 1, 1, 2, 3, 5, 8, 13, 21 o Algorithm tip 1 is the sum of 0 1 2 is the sum of 1 1 This can be achieved using 3 3 is the sum of 2 1 5 is the sum of 3 2 different variables, updating them for each iteration. Find 8 is the sum of 5 3 the pattern. 13 is the sum of 8 5 and so on At some value for N, if you output the series in a single line, some output may get cut- off or look unappealing as it jumps lines depends on IDE). What could you add to your program for a nice-looking output at larger values of N for all IDEs
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
