Print? /* Start the comments in the program header (to avoid any problems encountered during the submission of blog posts, the slash used to indicate that the comments have been deleted)
* Copyright and version Declaration of the program
* All rights reserved.
* File name: txt. c
* Author: liuyongshui
* Question: Create an array of 20 characters and store the first 20 items of the Fibonacci series.
* Problem source:
* Completion date: January 1, April 17, 2013
* Version No.: V1.0
*/
# Include <stdio. h>
Int fib (int n); // returns the Fibonacci number.
Int main ()
{
Int I;
Int num [20];
For (I = 0; I <20; I ++)
{
Num [I] = fib (I );
}
For (I = 0; I <20; I ++)
{
Printf ("the % 2d Fibonacci numbers are: % d \ n", I + 1, num [I]);
}
Return 0;
}
// Fib () function declaration
Int fib (int n)
{
If (n = 0)
{
Return 0;
}
Else if (n = 1)
{
Return 1;
}
Else
{
Return fib (n-1) + fib (n-2 );
}
}
/* Start the comments in the program header (to avoid any problems encountered during the submission of blog posts, the slash used to indicate that the comments have been deleted)
* Copyright and version Declaration of the program
* All rights reserved.
* File name: txt. c
* Author: liuyongshui
* Question: Create an array of 20 characters and store the first 20 items of the Fibonacci series.
* Problem source:
* Completion date: January 1, April 17, 2013
* Version No.: V1.0
*/
# Include <stdio. h>
Int fib (int n); // returns the Fibonacci number.
Int main ()
{
Int I;
Int num [20];
For (I = 0; I <20; I ++)
{
Num [I] = fib (I );
}
For (I = 0; I <20; I ++)
{
Printf ("the % 2d Fibonacci numbers are: % d \ n", I + 1, num [I]);
}
Return 0;
}
// Fib () function declaration
Int fib (int n)
{
If (n = 0)
{
Return 0;
}
Else if (n = 1)
{
Return 1;
}
Else
{
Return fib (n-1) + fib (n-2 );
}
}