728x90
반응형
#include <string>
#include <vector>
using namespace std;
bool solution(int x) {
bool answer = true;
int x1 = x;
int result=0;
while(x > 0)
{
result += x % 10;
x = x / 10 ;
}
if(x1 % result != 0)
{
answer = false;
}
else
answer = true;
return answer;
}
728x90
반응형
'Computer Science > Coding Test' 카테고리의 다른 글
c++(cpp) 프로그래머스 - 코딩 테스트 : x만큼 간격이 있는 n개의 숫자 (0) | 2022.07.28 |
---|---|
c++(cpp) 프로그래머스 - 코딩 테스트 : 핸드폰 번호 가리기 (0) | 2022.07.28 |
c++(cpp) 프로그래머스 : 코딩 테스트 - 콜라츠 추측 (0) | 2022.07.27 |
c++(cpp) 프로그래머스 : 코딩 테스트 - 최대공약수와 최소공배수 (0) | 2022.07.27 |
c++(cpp) 프로그래머스 : 코딩 테스트 - 제일 작은 수 제거하기 (0) | 2022.07.27 |
댓글