Sabtu, 09 Desember 2017

MENGHITUNG BILANGAN FIBONACCI

Berikut program untuk menghitung bilangan fibonacci dengan Dev c++

source code:


#include <stdio.h>

int main ()
{
int i,n, t1=0,t2=1,nextTerm;
printf ("enter the number of terms:");
scanf("%d", &n);

printf("fibonacci series : ");

for (i=1; i<=n; ++i)
{
printf("%d,",t1);
nextTerm = t1+t2;
t1=t2;
t2=nextTerm;
}
return 0;
}


Output :

Tidak ada komentar:

Posting Komentar