문제

자연수 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

 

2741번: N 찍기

자연수 N이 주어졌을 때, 1부터 N까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

+ Recent posts