✳ 피라미드
using System.Security.Cryptography.X509Certificates;
namespace CShop
{
class Program
{
static void Main(string[] args)
{
// 피라미드 별모양
for (int i = 0; i < 6; i++)
{
for (int q = 0; q <= i; q++)
{
Console.Write("*");
}
Console.WriteLine();
}
}
}
}
using System.Security.Cryptography.X509Certificates;
namespace CShop
{
class Program
{
static void Main(string[] args)
{
// 피라미드 별모양
for (int i = 0; i < 6; i++)
{
for (int q = 0; q < 6 - i; q++)
{
Console.Write("*");
}
Console.WriteLine();
}
}
}
}
using System.Security.Cryptography.X509Certificates;
namespace CShop
{
class Program
{
static void Main(string[] args)
{
// 피라미드 별모양
for (int i = 0; i < 6; i++)
{
for (int q = 0; q < 6 - i - 1; q++)
{
Console.Write(" ");
}
for (int w = 0; w < i * 2 + 1; w++)
{
Console.Write("*");
}
Console.WriteLine();
}
}
}
}
'C# 언어 > C# 문제 풀이' 카테고리의 다른 글
[C#] 팩토리얼 / 재귀함수 (0) | 2024.03.19 |
---|---|
[C#] 구구단 (0) | 2024.03.19 |