C# Star Pattern (3) |
/* C# program to print the following pattern ***** **** *** ** * */ namespace Patterns { class Program { static void Main(string[] args) { int i, j, k; for (i = 5; i >= 1; i--) { for (j = 5; j > i; j--) { Console.Write(" "); } for (k = 1; k <= i; k++) { Console.Write("*"); } Console.WriteLine(); } } } }
No comments:
Post a Comment