[BaekJoon] 10872번 - 팩토리얼 [Java][C++]
[BaekJoon] 10872번 - 팩토리얼 [Java][C++]
1. 문제 풀이
$N!$ 를 출력하는 문제로 $N!$ 는 $1$ 부터 $N$ 까지의 곱이다.
2. 코드
1. 풀이 [Java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
int fact = 1;
for (int i = 1; i <= N; i++) {
fact *= i;
}
System.out.println(fact);
}
}
2. 풀이 [C++]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
int fact = 1;
for (int i = 1; i <= n; i++) {
fact *= i;
}
cout << fact;
}
This post is licensed under CC BY 4.0 by the author.