https://www.acmicpc.net/problem/10870
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static int fibonacci(int n){
if(n == 0) return 0;
if(n == 1) return 1;
return fibonacci(n - 1) + fibonacci(n - 2);
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n =Integer.parseInt(br.readLine());
System.out.println(fibonacci(n));
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 11729번 - 하노이 탑(Java 8) (0) | 2022.02.27 |
---|---|
백준 2447번 - 별 찍기 - 10 (Java 8) (0) | 2022.02.27 |
백준 10872번 - 팩토리얼 (Java 8) (0) | 2022.02.26 |
백준 1002번 - 터렛 (Java 8) (0) | 2022.02.25 |
백준 4153번 - 직각삼각형 (Java 8) (0) | 2022.02.25 |
댓글