100% recursion function to get hEmachandra (/fibonacci) series
// Online C compiler to run C program online
#include"stdio.h"
int fibonacci(int n)
{
if (n==0
return 0;
else if n==1
return 1;
else
return (fibonacci(n-1) + fibonacci(n-2));
}
int main()
{
int i,p, temp;
printf("\n enter no of terms required in hemachandra series:");
scanf("%d",&p);
for(i=0;i<p;i++)
{
temp= fibonacci(i);
printf("\n %d",temp);
}
}
#include"stdio.h"
int fibonacci(int n)
{
if (n==0
return 0;
else if n==1
return 1;
else
return (fibonacci(n-1) + fibonacci(n-2));
}
int main()
{
int i,p, temp;
printf("\n enter no of terms required in hemachandra series:");
scanf("%d",&p);
for(i=0;i<p;i++)
{
temp= fibonacci(i);
printf("\n %d",temp);
}
}
తెరమీద
enter no of terms required in hemachandra series:7
0
1
1
2
3
5
8
1
1
2
3
5
8
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.