Assignment Write a program that prints the shape shown below. You may use output statements that print either a single a
Posted: Mon Jul 11, 2022 9:55 am
Assignment Write a program that prints the shape shown below. You may use output statements that print either a single asterisk (*) or a single blank. Maximize your use of repetition (with nested for or while structures) and minimize the number of output statements. Output ****** *** **** ***** ****** Note: The output should look exactly as shown the example above IMPORTANT: You cannot use an individual loop for each row of asterisks.