# Exercise 12

Create a loop to print following triangle made up of asterisks *.

   ***       ***
  *****     *****
 *******   *******
********* *********
*******************
 *****************
  ***************
   *************
    ***********
     *********
      *******
       *****
        ***
         *
1
2
3
4
5
6
7
8
9
10
11
12
13
14

# Hint

Use what you have learned in Exercise 11 and Exercise 6.

Last Updated: Apr 22, 2020, 7:32 PM