10870 : 피보나치 수 5

풀이

엠티 가즈아~

코드

#include <stdio.h>
int n, a, b = 1;
int main() {
	scanf("%d", &n);
	while (n--) {
		b += a;
		a = b - a;
	}
	printf("%d", a);
	return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-03-23 11:42

Read more posts by this author