C# Recursive Program to Calculate Fibonacci Series

In this C# program, we will write a recursive function to calculate a number in the Fibonacci series. The Fibonacci series starts with the numbers 1 and 1, and each subsequent number is the sum of the two preceding ones. This is a classic problem for demonstrating recursion, as the function will repeatedly call itself with smaller and smaller values until it reaches the base case (when the position in the sequence is 1 or 2). The function will return the correct Fibonacci number for any given position in the series. For example, the Fibonacci number at position 5 is 5, as the sequence goes 1, 1, 2, 3, 5, 8, 13...



Group

Functions in C#

Objective

1. Define a recursive function called "Fibonacci" that takes an integer parameter representing the position in the Fibonacci sequence.
2. The base case of the recursion will be when the position is 1 or 2, in which case it should return 1.
3. For all other positions, return the sum of the results of calling Fibonacci for the two preceding positions.
4. In the Main method, test the Fibonacci function by passing an integer value and displaying the result.

Write a C# program that uses recursion to calculate a number in the Fibonacci series (in which the first two items are 1, and for the other elements, each one is the sum of the preceding two).

public static void Main()

{
// Print the Fibonacci number at position 6 using recursion
Console.WriteLine(Fibonacci(6)); // This will print "8"
}

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Main method where the program execution begins
    public static void Main()
    {
        // Print the Fibonacci number at position 6 using recursion
        Console.WriteLine(Fibonacci(6));  // This will print "8"
    }

    // Recursive function to calculate the Fibonacci number at a given position
    public static int Fibonacci(int n)
    {
        // Base case: if n is 1 or 2, return 1
        if (n == 1 || n == 2)
        {
            return 1;  // Base case: Fibonacci(1) and Fibonacci(2) are both 1
        }
        
        // Recursive case: return the sum of the two preceding Fibonacci numbers
        return Fibonacci(n - 1) + Fibonacci(n - 2);  // Recursive call to calculate the Fibonacci number
    }
}

 Output

8

Share this C# Exercise

More C# Practice Exercises of Functions in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • C# Function to Modify a Character in a String

    In this C# program, we will write a function called "ChangeChar" that modifies a specific character in a string. The function should take a string and an index as parameters, and r...

  • C# Function to Check if a Number is Prime

    In this C# program, we will write a function called "IsPrime" that checks whether a given integer is prime or not. A prime number is a number that is greater than 1 and has no divi...

  • C# Program to Sum Two Numbers from Command Line Arguments

    In this C# program, we will create a simple console application called "sum" that takes two integer numbers as command line arguments. The program will then calculate the sum of th...

  • C# Program to Sum the Digits of a Number

    In this C# program, we will create a function called "SumDigits" that receives an integer number as input and returns the sum of its digits. The function will iterate through the d...

  • C# Program to Calculate Factorial Using Recursion

    In this C# program, we will create a recursive function to calculate the factorial of a given number. The factorial of a number is calculated by multiplying the number by each inte...

  • C# Program to Reverse Words in Command Line

    This C# program takes multiple words as input from the command line and displays them in reverse order. The program reads the input, splits the words into an array, and then revers...