문자열을 정수로 바꾸기 Posted Jan 2, 2024 By So Hee Park 1 min read 1 2 3 4 public int solution(String str){ int intValue= Integer.parseInt(str); return intValue; } Coding Test, Level_1 parseint parse This post is licensed under CC BY 4.0 by the author. Share