반응형
https://programmers.co.kr/learn/courses/30/lessons/12947
글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
bool solution(int x) {
bool answer = true;
int number = x;
int sum =0;
while(number !=0){
sum +=number %10;
number /= 10;
}
if(0 == x% sum){
answer = true;
}
else
answer = false;
return answer;
}
꾸준히 하다보면 실력이 늘겠지..
반응형
'코딩테스트' 카테고리의 다른 글
[프로그래머스][C++] 행렬의 덧셈 (0) | 2022.03.20 |
---|---|
[프로그래머스][C++] 핸드폰 번호 가리기 (0) | 2022.03.20 |
[프로그래머스][C] 평균 구하기 (0) | 2022.03.20 |
[프로그래머스][C++] 콜라츠 추측 (0) | 2022.03.20 |
[프로그래머스][C++] 최대공약수와 최소공배수 (0) | 2022.03.20 |