BOJ 27433 팩토리얼 2

1 개요[ | ]

BOJ 27433 팩토리얼 2


2 같이 보기[ | ]

3 C++[ | ]

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N;
    cin >> N;
    long int prod = 1;
    for(int i=2; i<=N; i++) {
        prod *= i;
    }
    cout << prod;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}