[백준] 10872: 팩토리얼

SuKong·2020년 7월 30일
0
post-thumbnail

'10872- 팩토리얼' 문제로 이동!

👉문제

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

👉입력

첫째 줄에 정수 N(0 ≤ N ≤ 12)가 주어진다.

👉출력

첫째 줄에 N!을 출력한다.


✍내 풀이

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int num = sc.nextInt();
		System.out.println(factorial( num));
	}

	public static int factorial ( int n) {
		if ( n ==0 ){ return 1;}
		else {return n * factorial ( n -1);}
	}

}
profile
안녕하세요 🤗

0개의 댓글