fun main() { var intArray: IntArray = IntArray(3) for (int in intArray) { // 초기화 안하면 자동으로 0 들어감 print("$int ") } }. 실행 결과 ...
確定! 回上一頁