Friday, October 2, 2020

Fibonacci Series in C

 Write a program that will ask the user to give an integer and then the program will generate the Fibonacci series using C as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.

Program Listing

// fibonacci.c
// Author   : Jake Rodriguez Pomperada,MAED-IT,MIT
// Date     : October 2, 2020   Friday  2:52 PM
// Website  : http://www.jakerpomperada.blogspot.com
//            http://www.jakerpomperada.com
// Email    : jakerpomperada@gmail.com
// Location : Bacolod City, Negros Occidental

#include <stdio.h>


int fibonacci_series(int n) {
   if (n <= 1)
   return n;
   return fibonacci_series(n-1) + fibonacci_series(n-2);
}

int main() {
   int n=0,a=0;
   
   printf("\n\n");
   printf("\tFibonacci Series in C");
   printf("\n\n");
   printf("\tGive a Number : ");
   scanf("%d",&n);
   printf("\n");
   printf("\tDisplay Results");
   printf("\n\n");
   printf("\t");
   for(a=0;a<n;a++) {
    printf(" %d ",fibonacci_series(a));
   }
   printf("\n\n");
   printf("\tEnd of Program");
   printf("\n");
}

No comments:

Post a Comment