using System;
public class Solution {
public int solution(int n) {
int answer = 0;
string num = n.ToString(); //int --> string으로 변환
for(int i=0; i < num.Length; i++) //입력된 수의 길이 만큼 반복
{
answer += int.Parse(num[i].ToString()); //string에 있는 char들을 다시
//string으로변환 후 int로 변환
} //num[0]에 '1'이 num[1]에 '2' <-- char
return answer;
}
}
728x90
'프로그래머스 문제풀이' 카테고리의 다른 글
프로그래머스 Level1 : 행렬의 덧셈 (0) | 2020.06.28 |
---|---|
프로그래머스 Level1 : 정수 내림차순으로 배치하기 (0) | 2020.06.28 |
프로그래머스 Level 1 : 두 정수 사이의 합 (0) | 2020.06.25 |
프로그래머스 LEVEL 1 : 직사각형 별찍기 (0) | 2020.06.25 |
프로그래머스 LEVEL1 : 약수의 합 (0) | 2020.06.25 |