반응형
fun main(args: Array<String>) {
val s1 = readLine()!!
var ans = ""
for(i in 0 until s1.length) {
if(Character.isUpperCase(s1[i])) {
ans += Character.toLowerCase(s1[i]);
} else {
ans += Character.toUpperCase(s1[i]);
}
}
println(ans)
}
https://notepad96.tistory.com/89
반응형
'IT > 알고리즘' 카테고리의 다른 글
83 프로그래머스] 배열뒤집기 kotlin (0) | 2023.10.11 |
---|---|
82 프로그래머스] kotlin 각도기 (0) | 2023.10.10 |
80] 프로그래머스 문자열 반복해서 출력하기 (0) | 2023.10.08 |
79] 프로그래머스 a와 b 출력하기 kotlin (0) | 2023.10.05 |
78] 1672. Richest Customer Wealth Kotlin (0) | 2023.04.19 |
댓글