Question: You are to write a recursive program that determines a sequence of numbers called the liarliar numbers. Use scanf to input data and printf to


You are to write a recursive program that determines a sequence of numbers called the liarliar numbers. Use scanf to input data and printf to output the results. you may use C++ style I/O also 1. You are to work individually. Include your names in the code comments. Failure to include your name may lead to a grade of zero. 2. Name your file lab3assignmentc. Failure to name the file correctly may lead to a grade of zero. 3. The input data will be a single integer value. You may create a file and redirect the contents, but it is not necessary in this lab. 4. The assignment must be completed by the end of the lab session. Liar-Liar numbers are a sequence of negative numbers in which each number is two times the sum of the previous two negative numbers. The exact formulation for the Liar-Liar sequence is: if n = 1 Liar-Liar (n ) = -1 if n = 2 2* (Liar-Liar (n-1) + Liar-Liar (n-2) ) if n > 2 Your program should generate the Liar-Liar sequence shown below for any value of n such that 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
