목록제곱 (1)
without haste but without rest
[C / 자료구조] 1주차 과제 - 재귀
제곱 연산의 과정을 출력하는 과제 #define CRT_SECURE_NO_WARNINGS #include int count = 0; double res; void depth(int n) { for (int i = 0; i 0) { depth(count++); printf("power(%.3lf, %d)\n", d, n); } if (n == 0) { count--; return 1; } else if (n % 2 == 0) res = power(d * d, n / 2); else res = d * power(d * d, (n - 1) / 2); if (n > 1) { depth(--coun..
Homework
2020. 4. 4. 16:21