C# Star Pattern (1) |
/* 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 = 1; j < i; j++) { Console.Write(" "); } for (k = 5; k >= i; k--) { Console.Write("*"); } Console.WriteLine(); } } } }
No comments:
Post a Comment