본문 바로가기
코딩테스트 연습/프로그래머스 Lv.0

프로그래머스 코딩테스트 lv.0 - 문자열을 정수로 변환하기. 자바/JAVA

by 트레비봄 2023. 8. 19.
728x90
문제 설명

소스 코드
class Solution {
    public int solution(String s) {   
        
        return Integer.parseInt(s); // 형변환.
    }
}

 

230819 학습.

728x90