반응형
#include <iostream>
using namespace std;
int solution(int n)
{
int answer = 0;
while(n!=0){
answer+=n%10;
n/=10;
}
return answer;
}
반응형
'컴퓨터공학' 카테고리의 다른 글
서버 gpu에서 프로세스 실행 후 남아있는 메모리 정리하기. (0) | 2022.01.11 |
---|---|
pip/apt/conda 차이점 (0) | 2022.01.05 |
[프로그래머스, C++] 예산 (0) | 2021.09.26 |
[프로그래머스, C++] 없는 숫자 더하기 (0) | 2021.09.26 |
[프로그래머스, C++] 수박수박수박수박수박수? (0) | 2021.09.19 |