Question: In C# Write a program which displays the following patterns separately. Use the for loop to generate the patterns. All asterisks (*) should be displayed
In C#
Write a program which displays the following patterns separately.
Use the for loop to generate the patterns.
All asterisks (*) should be displayed by a single statement of the form Console.Write(*);
(a) * ** *** **** ***** ****** ******* ******** ********* ********** (b) ********** ********* ******** ******* ****** ***** **** *** ** * (c) ********** ********* ******** ******* ****** ***** **** *** ** *
(d) * ** *** **** ***** ****** ******* ******** ********* **********
The program should display all four patterns side by side. (Part 2)
Thank you.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
