프로그래머스(Level 1) - 👻 자릿수 더하기

Gammi·2023년 1월 18일
0

프로그래머스

목록 보기
27/69

✔ 문제







✔ 해결


import java.util.*;

public class Solution {
  public int solution(int n) {
    int answer = 0;
    string nStr = "" + n; // String으로 형변환
    String[] strArr = nStr.split("");
    for(int i = 0; i < strArr.length; i++) {
      answer += Integer.parseInt(strArr[i]);
    }
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글