[iOS / Swift] 문자열 돌리기

justdotheg·2024년 1월 17일

문제


풀이

import Foundation

let s1 = readLine()!

for i in s1 {
  print(i)
}

0개의 댓글