[C언어/C++] 팩토리얼

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
 
using namespace std;
 
int main() 
{
    int n, result = 1;
    cin >> n;
 
    for (int i = 1; i <= n; i++)
        result *= i;
    
   cout << result << endl;
   return 0;
}
cs

관련글

제목 작성자 작성일