문제 출처: https://programmers.co.kr/learn/courses/30/lessons/12947
문제를 푸는데 큰 어려움은 없었습니다. 코드는 다음과 같습니다:
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
bool solution(int x) {
int sum = 0, n = x ;
while(n != 0){
sum += n % 10 ;
n /= 10 ;
}
return ((x % sum) == 0 ) ? true : false ;
}
해당 문제는 Github에서도 보실 수 있습니다:
https://github.com/gurcks8989/CodingTest/blob/master/Programmers/P12947_Harshad_Number.cpp
훈수 및 조언은 언제든 환영입니다.