728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12931
using System;
public class Solution {
public int solution(int n) {
int answer = 0;
char[] chr = n.ToString().ToCharArray();
foreach(char item in chr)
{
int temp = int.Parse(item.ToString());
answer += temp;
}
return answer;
}
}
음.. 배열로 받고 순회하면서 더하고..
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 약수의 합 (0) | 2021.08.20 |
---|---|
[프로그래머스 C#] 이상한 문자 만들기 (0) | 2021.08.19 |
[프로그래머스 C#] 자연수 뒤집어 배열로 만들기 (0) | 2021.08.15 |
[프로그래머스 C#] 정수 내림차순으로 배치하기 (0) | 2021.08.11 |
[프로그래머스 C#] 정수 제곱근 판별 (0) | 2021.08.01 |