글
프로그래머스 C# 자릿수 더하기(while문 활용하기)
프로그래밍
2022. 12. 29. 12:00
728x90
SMALL
using System;
public class Solution {
public int solution(int n) {
int answer = 0;
while(n/10 != 0)
{
answer += n%10;
n = n/10;
}
answer += n%10; //맨 마지막에 빠져나올 때에는 나머지를 안가져가서 추가로 더한다.
return answer;
}
}
/////
파이썬
def solution(n):
answer = 0
while n:
answer += n%10
n //= 10
return answer
/////
def solution(n):
return sum(int(i) for i in str(n))
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 순서쌍의 개수(사실상 약수의 개수, P, J) (0) | 2022.12.29 |
---|---|
프로그래머스 C# 제곱 수 판별하기(Math.Sqrt(), P, J) (0) | 2022.12.29 |
프로그래머스 C# 배열의 유사도(문자열 Equals, P,J) (0) | 2022.12.29 |
프로그래머스 C# 문자열안에 문자열(string.Contains, P, J) (0) | 2022.12.29 |
프로그래머스 C# 옷가게 할인 받기(if문, 3항 연산자, 삼항연산자, P, J) (0) | 2022.12.29 |