[프로그래머스]자연수 뒤집어 배열로 만들기 jyukki included in 프로그래머스 2019-12-25 72 words One minute Contents https://programmers.co.kr 풀이: 자연수 n을 뒤집어 각 자리 숫자를 원소로 가지는 배열을 리턴한다. 코드: 사용언어 : c++ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #include <stdio.h> #include <stdbool.h> #include <stdlib.h> int* solution(long long n) { // 리턴할 값은 메모리를 동적 할당해주세요. int* answer = (int*)malloc(sizeof(int)*12 + 1); int c = 0; while (n) { answer[c] = n % 10; n /= 10; c++; } return answer; } Please enable JavaScript to view the comments powered by Disqus.