source: trunk/Softwares/Basic_test.or32/src/c/func_fibonnacci.c @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 225 bytes
Line 
1#include "func_fibonnacci.h"
2
3int fibonnacci(int x)
4{
5  int i;
6  int xn   = 0;
7  int xn_1 = 1;
8  int xn_2 = 0;
9
10  for (i=0;i<=x;i++)
11    {
12      xn   = xn_1 + xn_2;
13      xn_2 = xn_1;
14      xn_1 = xn;
15    }
16 
17  return xn;
18}
Note: See TracBrowser for help on using the repository browser.