https://www.acmicpc.net/problem/10872
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
long long result=1;
for (int i = 1; i <= n; i++) {
result = result * i;
}
cout << result;
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 1929번 : 소수 구하기 (0) | 2019.02.21 |
---|---|
[C++] 백준 11050번 : 이항 계수 1 (0) | 2019.02.21 |
[C++] 백준 10808번 : 알파벳 개수 (0) | 2019.02.21 |
[C++] 백준 4673번 : 셀프 넘버 (0) | 2019.02.21 |
[C++] 백준 2775번 : 부녀회장이 될테야 (0) | 2019.02.21 |