https://www.acmicpc.net/problem/10872
1. bottom-up 방식
java 소스
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int num = sc.nextInt();
int result = 1;
while(num-- > 0) {
result *= num + 1;
}
System.out.println(result);
}
}
Colored by Color Scripter
|
c++소스
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#include <iostream>
using namespace std;
int get_factorial(int num)
{
if (num == 0)
{
return 1;
}
int sum = 1;
for (int i = 1; i <= num; i++)
{
sum *= i;
}
return sum;
}
int main()
{
// 입출력 향상
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n;
cin >> n;
cout << get_factorial(n);
return 0;
}
|
2. top-down방식 (재귀)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include <iostream>
using namespace std;
int get_factorial(int num)
{
if (num == 0)
{
return 1;
}
return num * get_factorial(num - 1);
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n;
cin >> n;
cout << get_factorial(n);
return 0;
}
Colored by Color Scripter
|
'Algorithm > BOJ' 카테고리의 다른 글
[BOJ]2004번: 조합 0의 개수(java, c++) (0) | 2019.09.21 |
---|---|
[BOJ]1676번: 팩토리얼 0의 개수 (0) | 2019.09.21 |
[BOJ]6588번: 골드바흐의 추측(java, c++) (0) | 2019.09.21 |
[BOJ]1929번: 소수 구하기(java, c++) (0) | 2019.09.17 |
[BOJ]1978번: 소수 찾기(java, c++) (0) | 2019.09.17 |
댓글