Reference no: EM132197978
You will write a console program that will meet the following requirements:
Create a console program where you will implement coding constructs and variables that are needed for this program and will implement the code within Main and any required static methods.
The program should use StringBuilder and any loop construct that will work to output the string "Bark " and "Meow " ten (10) times with growing columns (1 to 10) as shown below.
The odd columns will display "Bark " and the even columns will display "Meow ".
Each row will be built using StringBuilder.
You should format your output to look exactly like the following:
Bark
Bark Meow
Bark Meow Bark
Bark Meow Bark Meow
Bark Meow Bark Meow Bark
Bark Meow Bark Meow Bark Meow
Bark Meow Bark Meow Bark Meow Bark
Bark Meow Bark Meow Bark Meow Bark Meow
Bark Meow Bark Meow Bark Meow Bark Meow Bark
Bark Meow Bark Meow Bark Meow Bark Meow Bark Meow
Press any key to continue . . .
This will require some analysis of the problem before coding is accomplished.