Question: This question is supposed to be a C++ program. 2. [20 pts) Your task in this question is to write a function called drawV that
This question is supposed to be a C++ program.

2. [20 pts) Your task in this question is to write a function called drawV that takes one integer parameter called height and returns a string representation of the letter 'V' with the given height using ascii stars ("*") and spaces(" "). Assume that height is greater than or equal to 2 and the width is always 2*height-1. Below is the expected return value for different calls to the function draw (): indicates a space drawv (2) should return the following string where the "*-* " "-*- " drawV (3) should return the following string where the -indicates a space "*---* " "-*-*- " "--*-- "; indicates a space drawV (4) should return the following string where the ----* " "-*---*- " "--*-*-- " Name: "---*
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
