Notice
Recent Posts
Recent Comments
Link
bdfgdfg
[레벨1] 하샤드 수 본문
반응형
#include <string>
#include <vector>
using namespace std;
bool solution(int x) {
bool answer = true;
int harshadNum = 0,temp = x;
while(temp > 0)
{
harshadNum += temp % 10;
temp /= 10;
}
if(x % harshadNum != 0)
answer = false;
return answer;
}
반응형
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[레벨1] 최대공약수와 최소공배수 - 유클리드 호제법 (0) | 2021.08.22 |
---|---|
[레벨1] 콜라츠 추측 (0) | 2021.08.21 |
[레벨1] 평균 구하기 (0) | 2021.08.19 |
[레벨1] 핸드폰 번호 가리기 (0) | 2021.08.18 |
[레벨1] x만큼 간격이 있는 n개의 숫자 (0) | 2021.08.17 |
Comments