Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a C++ program to display a triangle of stars according to the number of lines the user inputs. Special conditions: You cannot use any

Write a C++ program to display a triangle of stars according to the number of lines the user inputs. Special conditions:

You cannot use any loops (for, while, do while, or goto) in your program.

You have to use two recursive functions. One recursive function is to be called from another recursive function. (Hint: you can look at recursion (C++ code) in Moodle to get some ideas.) Example: (users input in bold) Enter number of lines: 6

*

* *

* * *

* * * *

* * * * *

* * * * * *

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions