문제
첫째 줄에는 별 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
|
using System;
using System.Text;
class Program
{
static void Main(string[] args)
{
int a = int.Parse(Console.ReadLine());
StringBuilder aa = new StringBuilder();
for(int i = 1; i <= a; i++)
{
for(int j = 0; j < i; j++)
{
aa.Append("*");
}
aa.Append("\n");
}
Console.Write(aa);
}
}
|
cs |
2중 for문을 이용하여 구현.
https://www.acmicpc.net/problem/2438
'void Algorithm' 카테고리의 다른 글
백준 문제 번호 : 10871 - X보다 작은 수 (0) | 2019.09.24 |
---|---|
백준 문제 번호 : 2439 - 별 찍기 -2 (0) | 2019.09.24 |
백준 문제 번호 : 11021 - A+B -7 (0) | 2019.09.24 |
백준 문제 번호 : 2742 - 기찍 N (0) | 2019.09.24 |
백준 문제 번호 : 2741 - N 찍기 (0) | 2019.09.24 |