Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

JAVA Please. Note the output for Part 1 needs to be with spaces like in the example. Objective: To reinforce the concept of recursion. Assignment:

JAVA Please. Note the output for Part 1 needs to be with spaces like in the example.

image text in transcribed

Objective: To reinforce the concept of recursion. Assignment: Part 1 Write a complete, well documented program in one file, that prompts the user for input and tests a recursive function. You will write a function that implements recursion and produces the following output: Sample is for input of 4: Note: indentions are required for credit. This was written by call number 1. This was written by call number 2. This was written by call number 3. This was written by call number 4. This was ALSO written by call number 4. This was ALSO written by call number 3. This was ALSO written by call number 2. This was ALSO written by call number 1. In this example, the recursion stopped when it reached four levels deep (because 4 was input), but your program should be capable of continuing to any specified level. Part 2 (put in same program) Write a recursive function called sumover that has one argument n, which is an unsigned integer. The function returns a double value, which is the sum of the reciprocals of the first n positive integers. (The reciprocal of x is the fraction 1/x). For example, sumover(1) returns 1.0 (which is 1/1); sumover(2) returns 1.5 (which is 1/1 + 1/2, sumover(3) returns approximately 1.833 (which is 1/1 + 1/2 + 1/3). Define sumover(O) to be zero. Do not use any local variables in your function (accept input for n)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Expert Performance Indexing In SQL Server

Authors: Jason Strate, Grant Fritchey

2nd Edition

1484211189, 9781484211182

More Books

Students also viewed these Databases questions

Question

Describe Table Structures in RDMSs.

Answered: 1 week ago