제출 #16925

#제출 시각아이디문제언어결과실행 시간메모리
16925taehoon1018팩토리얼 세제곱들의 합 (YDX14_fact)C11
컴파일 에러
0 ms0 KiB
#include <stdio.h>
#include <math.h>
#include <stdlib.h>

int factorial(int n)
{
	if (n < 1)
		return 1;
	else
		return n*factorial(n - 1);
}

int main(void)
{
	int n, k, sum = 0, i, res;

	scanf("%d %d", &n, &k);

	for (i = 0; i <= n; i++)
	{
		sum += pow((double)factorial(i), k);
	}

	while (1)
	{
		res = sum % 10;
		if (res != 0)
			break;
	}

	printf("%d", res);

	return 0;

}

컴파일 시 표준 에러 (stderr) 메시지

fact.c: In function ‘main’:
fact.c:17:2: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d", &n, &k);
  ^
/tmp/ccjS5zQN.o: In function `main':
fact.c:(.text.startup+0x4c): undefined reference to `pow'
collect2: error: ld returned 1 exit status