문제
자연수 N이 주어졌을 때, 1부터 N까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오.
입력
첫째 줄에 100,000보다 작거나 같은 자연수 N이 주어진다.
출력
첫째 줄부터 N번째 줄 까지 차례대로 출력한다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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++)
{
aa.Append(i+"\n");
}
Console.Write(aa);
}
}
|
cs |
시간초과 방지를 위해 Stringbuilder 사용
https://www.acmicpc.net/problem/2741
'void Algorithm' 카테고리의 다른 글
백준 문제 번호 : 11021 - A+B -7 (0) | 2019.09.24 |
---|---|
백준 문제 번호 : 2742 - 기찍 N (0) | 2019.09.24 |
백준 문제 번호 : 15552 - 빠른 A+B (0) | 2019.09.24 |
백준 문제 번호 : 8393 - 합 (0) | 2019.09.24 |
백준 문제 번호 : 10950 - A+B - 3 (0) | 2019.09.24 |