Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

2. Write a recursive function recHourGlassShape( that takes a character and two integers n and indent as parameters and prints an hour glass pattern using

image text in transcribed
image text in transcribed
2. Write a recursive function recHourGlassShape( that takes a character and two integers n and indent as parameters and prints an hour glass pattern using the character. The number of characters in the top line of the pattern and in the bottom line of the pattern (i.e. the biggest lines for each of the characters) is n. The indent parameter represents the indentation used in the first line of the pattern and in the last line of the pattern. The indentation increases in the top triangle (using the first character) and decreases in the bottom triangle (using the second character). If n is 0 or negative or one of the characters is the empty string, the function doesn't print anything. You should assume that the indent parameter will be non-negative (i.e. >- 0). The following shows several examples of patterns using different characters, values of n, and amount of indentation. >>>recHourGlassshape (*,10,0) >>>recHourGlassshape (' ,10,10) sss$ S$ sss$ SSSsSs$s >>> recHourGlassShape('$,0,10) >>>recHourGlassshape ('$,5,2) >>> recHourGlassshape(-,3,2)

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

Oracle Database 10g Insider Solutions

Authors: Arun R. Kumar, John Kanagaraj, Richard Stroupe

1st Edition

0672327910, 978-0672327919

More Books

Students also viewed these Databases questions

Question

Define Decision making

Answered: 1 week ago

Question

What are the major social responsibilities of business managers ?

Answered: 1 week ago

Question

What are the skills of management ?

Answered: 1 week ago