[목 적] a ^ b 계산 [선행 조건] C : #include C++ : #include [ 원 형 ] double pow( double x, double y ); [ 예 시 ] 1 2 3 4 5 6 7 8 9 10 #include #include int main() { int a = 10; int b = 3; int res = pow(a, b); // res = 1000; return 0; } Colored by Color Scripter cs