Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

피보나치/손동일

From ZeroWiki

피보나치 수열



#include<iostream>
using namespace std;

int abc(int x);

void main()
{
	cout << "몇번째 숫자를 출력합니까?: " ;
	int a;
	cin >> a;
	cout << abc(a);
}


int abc(int x)
{
	return x<3 ? (x<2 ?1:2): abc(x-2) + abc(x-1);

}


피보나치