"*" pattern C#

PHOTO EMBED

Thu Nov 12 2020 22:03:53 GMT+0000 (Coordinated Universal Time)

Saved by @BrendY99 #c# #loops #for

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace StarPattern
{
class Program
{
static void Main(string[] args)
{
int x, y, z;
for (x =6; x >= 1; x--)
{
for (y = 1; y < x; y++)
{
Console.Write(" ");
}
for (z = 6; z >= x; z--)
{
Console.Write("*");
}
Console.WriteLine();
}
Console.ReadLine();
}
}
}
content_copyCOPY

school

https://www.educba.com/patterns-in-c-sharp/