Posts [알고리즘] 프로그래머스 - 자릿수 더하기
Post
Cancel

[알고리즘] 프로그래머스 - 자릿수 더하기


문제

자릿수 더하기


접근


코드

  • C++ 코드
1
2
3
4
5
6
7
8
9
10
11
using namespace std;

int solution(int n)
{
    int answer = 0;
    while(n>0){
        answer += n%10;
        n /= 10;
    }
    return answer;
}
  • 파이썬 코드
1
2
3
4
5
6
def solution(n):
    answer = 0
    while n > 0:
        answer += n%10
        n //= 10
    return answer


This post is licensed under CC BY 4.0 by the author.

[알고리즘] 프로그래머스 - 평균 구하기

[알고리즘] 프로그래머스 - 콜라츠 추측