본문 바로가기
Algorithm/BOJ

[BOJ]10872번: 팩토리얼(java, c++)

by HBGB 2019. 9. 21.

https://www.acmicpc.net/problem/10872

 

10872번: 팩토리얼

0보다 크거나 같은 정수 N이 주어진다. 이때, N!을 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

 

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

 

댓글