출제 링크 : https://www.acmicpc.net/problem/2438
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Solution
{
class Program
{
static void Main(string[] args)
{
int Num = int.Parse(Console.ReadLine());
StringBuilder sb = new StringBuilder();
string star = "*";
for (int i = 1; i <= Num; i++)
{
sb.Append($"{star}");
Console.WriteLine(sb);
}
}
}
}
'Baekjoon 문제풀이' 카테고리의 다른 글
[Baekjoon 3단계(11)] 10871번 : X보다 작은 수 (0) | 2021.08.31 |
---|---|
[Baekjoon 3단계(10)] 2439번 : 별 찍기 - 2 (0) | 2021.08.31 |
[Baekjoon 3단계(8)] 11022번 : A+B - 8 (0) | 2021.08.31 |
[Baekjoon 3단계(7)] 11021번 : A+B - 7 (0) | 2021.08.31 |
[Baekjoon 3단계(6)] 2742번 : 기찍 N (0) | 2021.08.31 |