출제 링크 : https://www.acmicpc.net/problem/2439
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 Input = new StringBuilder();
StringBuilder Output = new StringBuilder();
StringBuilder SpaceInput = new StringBuilder();
char charSpace = ' ';
SpaceInput.Append(charSpace, Num);
string star = "*";
for (int i = 0; i<Num; i++)
{
SpaceInput.Remove(0, 1);
Input.Append(star);
Output.Append(SpaceInput.ToString() + Input.ToString());
if(Num-1 == i)
{
break;
}
Output.Append("\n");
}
Console.WriteLine(Output.ToString());
}
}
}
'Baekjoon 문제풀이' 카테고리의 다른 글
[Baekjoon 4단계(1)] 10952번 : A+B - 5 (0) | 2021.08.31 |
---|---|
[Baekjoon 3단계(11)] 10871번 : X보다 작은 수 (0) | 2021.08.31 |
[Baekjoon 3단계(9)] 2438번 : 별 찍기 - 1 (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 |