반응형
코드
#include <iostream>
using namespace std;
int Factorial(int); // Prototype 함수원형
int main()
{
int Value;
cout << "숫자입력 : ";
cin >> Value;
int result = Factorial(Value);
cout << "Factorial = " << result << endl;
}
int Factorial(int Value)
{
int r = 1;
for (int i = 1; i <= Value; i++)
r = r * i;
return r;
}
결과
'프로그래밍 > C++' 카테고리의 다른 글
[C++] 레퍼런스(Reference)로 데이터 접근 예제 (0) | 2023.02.02 |
---|---|
[C++] Reference 및 포인터(Pointer)로 데이터 값 교환(Swap)하기 (0) | 2023.02.02 |
[C++] 열거체(Enumeration)의 간단한 예제 (0) | 2023.02.02 |
[C++] 구조체(Struct)를 이용한 데이터 입력 및 출력 (0) | 2023.02.02 |
[C++] 구조체(Struct)를 이용한 데이터 출력 (0) | 2023.02.02 |