첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제
첫째 줄에 N(1 ≤ N ≤ 100)이 주어진다.
첫째 줄부터 N번째 줄까지 차례대로 별을 출력한다.
:: 성공
: 학습
>> 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));
}
}
}
'C#' 카테고리의 다른 글
백준 11022 : A+B - 8 (0) | 2020.12.27 |
---|---|
백준 8393 : 합 (0) | 2020.12.23 |
백준 10950 : A+B - 3 (0) | 2020.12.11 |
백준 2884 : 알람 시계 (0) | 2020.12.10 |
백준 14681 : 사분면 고르기 (0) | 2020.12.09 |