C# Program to Find Product of Two Numbers using Recursion

This is a C# Program to find Product of 2 numbers using recursion.

Problem Description

This C# Program finds Product of 2 Numbers using Recursion.

Problem Solution

Here the multiples of 3 and 5 are found and the sum of all the multiples are calculated and are displayed.

Program/Source Code

Here is source code of the C# Program to find Product of 2 Numbers using Recursion. The C# program is successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.

/*
 * C# Program to find Product of 2 Numbers using Recursion
 */
using System;
class program
{
    public static void Main()
    {
        int a, b, result;
        Console.WriteLine("Enter two numbers to find their product: ");
        a = int.Parse(Console.ReadLine());
        b = int.Parse(Console.ReadLine());
        prog pg = new prog();
        result = pg.product(a, b);
        Console.WriteLine("Product of {0} and {1} is {2}",a, b, result);
        Console.ReadLine();
    }
}
class prog
{
    public int product(int a, int b)
    {
        if (a < b)
        {
            return product(b, a);
        }
        else if (b != 0)
        {
            return (a + product(a, b - 1));
        }
        else
        {
            return 0;
        }
    }
}
Program Explanation

In this C# program, we are reading two numbers using ‘a’ and ‘b’ variables respectively. Using ‘result’ variable we are calling product() function by passing the value of ‘a’ and ‘b’ variables as an argument.

advertisement

Then product() function is used to find the multiples of 3 & 5 and the sum of all the multiples are calculated and are printed.

Runtime Test Cases
 
Enter two numbers to find their product:
5
6
Product of 5 and 6 is 30

Sanfoundry Global Education & Learning Series – 1000 C# Programs.

Free 30-Day C Certification Bootcamp is Live. Join Now!
If you wish to look at all C# Programming examples, go to 1000 C# Programs.

advertisement
advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification contest to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
I’m Manish - Founder and CTO at Sanfoundry. I’ve been working in tech for over 25 years, with deep focus on Linux kernel, SAN technologies, Advanced C, Full Stack and Scalable website designs.

You can connect with me on LinkedIn, watch my Youtube Masterclasses, or join my Telegram tech discussions.

If you’re in your 40s–60s and exploring new directions in your career, I also offer mentoring. Learn more here.