[SWEA 1945] 간단한 소인수분해
2019. 8. 10. 03:32
SWEA 1945. 간단한 소인수분해 N=2a x 3b x 5c x 7d x 11e N이 주어질 때 a, b, c, d, e 를 출력하라. C++ 풀이 1차시도 #include #include using namespace std; int cal(int q, int div) { int answer{ 0 }; while ((q % div) == 0) { q = q / div; answer++; } return answer; } int main() { int number{ 0 }, q; cin >> number; for (int i = 1; i > q; cout