nefu 462 fib组合

 

nefu 462 fib组合 (斐波那契数列的通项公式以及推倒过程)

分类: 数学

题目链接:http://acm.nefu.edu.cn/JudgeOnline/problemshow.php?problem_id=462

 

斐波那契数列的通项公式


推倒过程:

 

对于本题分析:

 

最后一行的一个变形为(6-2√5)^2/4

 

代码

 

  1. #include <iostream>  
  2.   
  3. using namespace std;  
  4.   
  5.   
  6. int main(){  
  7.     int n;  
  8.     while(cin>>n){  
  9.         if(n%3)  
  10.             cout<<"no"<<endl;  
  11.         else  
  12.             cout<<"yes"<<endl;  
  13.     }  
  14.     return 0;  
  15. }  
posted @ 2015-10-12 20:14  handsomecui  阅读(208)  评论(0编辑  收藏  举报