반응형
https://www.acmicpc.net/problem/2193
--------------------------------------------------------
import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner scanner = new Scanner(System.in);
int input = scanner.nextInt();
long temp2 = 1;
if (input > 2 ) {
long temp1 = 1;
for (int i=2; i<input; i++) {
long temp3 = temp1 + temp2;
temp1 = temp2;
temp2 = temp3;
}
}
System.out.println(temp2);
scanner.close();
}
}
반응형
'코딩 테스트 > 백준(java)' 카테고리의 다른 글
Q14891번: 톱니바퀴 (0) | 2021.03.20 |
---|---|
Q14890: 경사로 (0) | 2021.03.20 |
백준 1149) RGB거리 (0) | 2017.09.16 |
백준 1003) 피보나치 함수 (0) | 2017.09.16 |
백준 1463) 1로 만들기 (0) | 2017.09.16 |