Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 백준
- BufferedWriter
- array
- flutter
- 앱개발
- 코틀린
- App
- Kotlin
- error
- 프로그래머스
- string
- BufferedReader
- Return
- 다트
- Scanner
- for문
- While
- CLASS
- androidstudio
- 반복문
- 별찍기
- Java
- For
- 코딩테스트
- IF
- 안드로이드
- android studio
- Android
- dataclass
- dart
Archives
- Today
- Total
amid.jungs
[Kotlin]백준 2741 본문
Ⅰ. 문제
자연수 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