Calculate Factorial Using an Iterative Approach in C#

This C# program demonstrates how to calculate the factorial of a number using an iterative approach. The factorial of a number is the product of all integers from 1 to that number. For example, 6! (6 factorial) is equal to 6 × 5 × 4 × 3 × 2 × 1, which equals 720. The function in this program uses a loop to calculate the factorial, making it an iterative solution instead of a recursive one.



Group

Functions in C#

Objective

1. Create a function named "Factorial" that accepts an integer as a parameter.
2. Use a loop to multiply all numbers from 1 to the input number.
3. Return the resulting factorial.
4. Test the function with the number 6.
5. Display the result using the console.

Write a C# iterative (non-recursive) function to calculate the factorial of the number specified as parameter.

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Function to calculate factorial using an iterative approach
    public static int Factorial(int n)
    {
        // Initialize result to 1 as the factorial starts from 1
        int result = 1;

        // Use a for loop to multiply all numbers from 1 to n
        for (int i = 1; i <= n; i++)
        {
            result *= i; // Multiply result by the current value of i
        }

        // Return the calculated factorial
        return result;
    }

    // Main method to test the Factorial function
    public static void Main()
    {
        // Test the Factorial function with the number 6
        Console.WriteLine(Factorial(6)); // Expected output is 720
    }
}

 Output

720

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#.

  • Write a Centered Title with Lines in C#

    In this C# program, we will create a function named "WriteTitle" that takes a string as input and displays it centered on the screen with a line above and below the text. The text ...

  • Command Line Title Writer in C#

    This C# program allows the user to provide a title from the command line. The program uses the previously created "WriteTitle" function to display the title in uppercase, centered ...

  • Count Digits and Vowels in a String in C#

    This C# function is designed to calculate the number of numeric digits and vowels within a given text string. The function, named "CountDV", accepts three parameters: the string to...

  • Check if a Character is Alphabetic in C#

    This C# function is designed to check if a given character is alphabetic, meaning it falls within the range of letters A to Z (both uppercase and lowercase). The function should re...

  • Check if a String is an Integer in C#

    This C# function is designed to check if a given string represents an integer number. The function should return a boolean value indicating whether the string can be successfully p...

  • Calculator C# Program Using Command Line Parameters

    This C# program allows users to perform basic arithmetic operations such as addition, subtraction, multiplication, or division directly from the command line. The user needs to pro...