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

피보나치/손동일: Difference between revisions

From ZeroWiki
imported>Unknown
No edit summary
 
(Repair batch-0008 pages from live compare)
 
Line 25: Line 25:
-------------  
-------------  
[[피보나치]]
[[피보나치]]

Latest revision as of 01:40, 27 March 2026

피보나치 수열



#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);

}


피보나치