문제
첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제
하지만, 오른쪽을 기준으로 정렬한 별(예제 참고)을 출력하시오.
입력
첫째 줄에 N(1 ≤ N ≤ 100)이 주어진다.
출력
첫째 줄부터 N번째 줄까지 차례대로 별을 출력한다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using System;
using System.Text;
class Program
{
static void Main(string[] args)
{
int a = int.Parse(Console.ReadLine());
StringBuilder star = new StringBuilder();
for(int i = 1; i <= a; i++)
{
for(int j = 0; j < a; j++)
{
if(a-i <= j) star.Append("*");
else star.Append(" ");
}
star.Append("\n");
}
Console.Write(star);
}
}
|
cs |
조건문을 통해 *을 입력할지 공백을 입력할지 결정한다.
https://www.acmicpc.net/problem/2439
'void Algorithm' 카테고리의 다른 글
백준 문제 번호 : 2577 - 숫자의 개수 (0) | 2019.09.24 |
---|---|
백준 문제 번호 : 10871 - X보다 작은 수 (0) | 2019.09.24 |
백준 문제 번호 : 2438 - 별 찍기 - 1 (0) | 2019.09.24 |
백준 문제 번호 : 11021 - A+B -7 (0) | 2019.09.24 |
백준 문제 번호 : 2742 - 기찍 N (0) | 2019.09.24 |