>> new string('문자(char)', 몇 번 반복할 수) // 반복할 숫자만큼 해당 문자(char)를 찍는다.
: 개선점 : 없음
using System;
namespace for01
{
class Program
{
static void Main(string[] args)
{
// :: Input size and Parse
int size = Int32.Parse(Console.ReadLine());
// :: result Array
string[] result = new string[size];
// :: Loop with size
for(int i = 1; i <= size; i++)
{
// :: Save Result
result[i - 1] = new string('*', i);
}
// :: Print with "Wn" for Spped
Console.WriteLine(string.Join("\n", result));
}
}
}