본문 바로가기
알고리즘/프로그래머스 1단계

[프로그래머스] 문자열을 정수로 바꾸기

by lanuarius19 2022. 4. 23.
728x90

 

프로그래머스 1단계
문자열을 정수로 바꾸기

https://programmers.co.kr/learn/challenges

 

문제 설명

문자열을 정수로 바꾸기

 

 

풀이

 

class Solution {
  public int solution(String s) {
      int answer = 0;   
      answer = Integer.parseInt(s);    
      return answer;
  }
}
728x90

댓글