프로그래머스(Level 1) - 🦎 문자열을 정수로 바꾸기

Gammi·2023년 2월 8일
0

프로그래머스

목록 보기
36/69
post-thumbnail

✔ 문제






✔ 해결


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




🔗 보충

Integer.parseInt() 메서드

  • 문자열을 정수형으로 변환
profile
개발자가 되었어요⭐️

0개의 댓글