728x90
안녕하십니까. Eun🦆입니다.
풀이법 입니다.
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <math.h>
int solution(int n) {
int answer = 0;
int k = 1; // 1자리수
int temp = 0;
for(int i=10;n>i;)
{
i = i*10;
k++;
}
printf("k=%d\n",k);
for(int i=k-1;i>=0;i--)
{
//answer += n/pow(10,i);
temp = n/pow(10,i);
answer += temp;
n = n - (temp*pow(10,i));
}
return answer;
}
네이버 블로그 리뉴얼입니다.
728x90
'개발 > Coding Test' 카테고리의 다른 글
[프로그래머스 C++ Lv1] 제일 작은 수 제거하기 (0) | 2022.06.06 |
---|---|
[프로그래머스 C++ Lv1] 정수 제곱근 판별 (0) | 2022.06.06 |
[프로그래머스 C++ Lv1] 약수의 합 (0) | 2022.06.06 |
[프로그래머스 C++ Lv1] 문자열을 정수로 바꾸기 (0) | 2022.06.06 |
[프로그래머스 C++ Lv1] 서울에서 김서방 찾기 (0) | 2022.06.06 |
댓글