#include <string>
#include <vector>
using namespace std;
bool solution(int x) {
if(x<10)
return true;
int divider=0;
int y = x;
while(true)
{
if(x <10)
{
divider +=x;
break;
}
divider += x%10;
x /=10;
}
if(y%divider == 0)
return true;
else
return false;
}
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[Level 1][C++] 정수 내림차순으로 배치하기 (0) | 2024.09.30 |
---|---|
[Level 1][C++] 제일 작은 수 제거하기 (0) | 2024.09.30 |
[Level 1][C++] 핸드폰 번호 가리기 (0) | 2024.09.30 |
[Level 1][C++] 직사각형 별찍기 (0) | 2024.09.27 |
[Level 1][C++] x만큼 간격이 있는 n개의 숫자 (0) | 2024.09.27 |