C#/수업 내용
반복문 역 별찍기
HSH12345
2023. 1. 3. 12:27
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Study02
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 5; i++)
{
for(int j = 0; j < 4 - i; j++)
{
Console.Write(" ");
}
for(int k = 0; k <= i; k++)
{
Console.Write("*");
}
Console.WriteLine();
}
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Study02
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 5; i++)
{
for(int j = 0; j < 4 - i; j++)
{
Console.Write(" ");
}
for(int h = 0; h <= i; h++)
{
Console.Write("*");
}
Console.WriteLine();
}
}
}
}