728x90
#include <stdio.h>
main()
{
int number, factorial;
printf("정수를 입력하시오: ");
scanf("%d", &number);
factorial = 1;
while (number > 0){
factorial = factorial*number;
--number;
}
printf("팩토리얼값(n!)=%d \n", factorial);
return 0;
}
728x90
'행복한 프로그래밍' 카테고리의 다른 글
fahr >> upper (0) | 2018.02.20 |
---|---|
chess (0) | 2018.02.20 |
ID의 원리 (0) | 2018.02.20 |
단순한 오타 (0) | 2018.02.09 |
합계를 구하는 프로그래밍 (0) | 2018.02.09 |