amid.jungs

[Kotlin]백준 2741 본문

코딩테스트

[Kotlin]백준 2741

amid.jungs 2022. 1. 30. 12:10

Ⅰ. 문제

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

입력 ) 첫째 줄에 100,000보다 작거나 같은 자연수 N이 주어진다.

출력) 첫째 줄부터 N번째 줄 까지 차례대로 출력한다.

 

Ⅱ. 문제풀이

import java.io.*
import java.util.*

fun main () = with(BufferedReader(InputStreamReader(System.`in`))) {

    val w = BufferedWriter(OutputStreamWriter(System.out))
    
    for(i in 1 ..readLine().toInt()){
    	println(i)
          }
      
   w.flush()
   w.close()
   close()
 }

 

'코딩테스트' 카테고리의 다른 글

[Kotlin]백준11022  (0) 2022.01.31
[Kotlin]백준2742  (0) 2022.01.30
[Kotlin] 백준15552  (0) 2022.01.22
[Kotlin] 백준8393  (0) 2022.01.21
[Kotlin]백준 10950  (0) 2022.01.21
Comments