Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Counting
- Class
- database
- Stack
- Matrix
- Number Theory
- string
- sorting
- 구현
- geometry
- Data Structure
- Tree
- greedy
- two pointers
- 코테
- 자바
- array
- Binary Tree
- Math
- dynamic programming
- Binary Search
- hash table
- java
- SQL
- simulation
- implement
- 코딩테스트
- 파이썬
- Method
- bit manipulation
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 27433. 팩토리얼 2 본문
1. 입력
- 첫째 줄에 정수 N(0 ≤ N ≤ 20)이 주어진다.
2. 출력
- 첫째 줄에 N!을 출력한다.
3. 코드
import java.util.*;
class Main{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
System.out.print(fac(n));
}
static long fac(int n){
if(n<=1) return 1;
return n*fac(n-1);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 25501. 재귀의 귀재 (0) | 2023.04.20 |
---|---|
[백준 온라인 저지] 10870. 피보나치 수 5 (0) | 2023.04.20 |
[백준 온라인 저지] 11866. 요세푸스 문제 0 (0) | 2023.04.20 |
[백준 온라인 저지] 2164. 카드2 (0) | 2023.04.20 |
[백준 온라인 저지] 18258. 큐 2 (0) | 2023.04.20 |