C# Program to Find Product of 2 Numbers Using Recursion Last Updated : 19 Oct, 2021 Comments Improve Suggest changes Like Article Like Report Given two numbers x and y find the product using recursion. Recursion is a process in which a function calls itself directly or indirectly and the corresponding function is known as a recursive function. It is used to solve problems easily like in this article using recursion we will find the product of two numbers. Examples: Input : x = 10, y = 3 Output : 30 Input : x = 70, y = 4 Output : 280 Approach: To print the product of two number using recursion follow the following steps: For our task we have two numbers, i.e., x, y.Initialize a variable result with value zero.Recursively add the x to result for y times.Take the base condition as y == 0. When y is equal to 0 then return from function.At The end of iteration the result variable will contain the product of x, y. Example: C# // C# program to display the product of // two numbers using Recursion using System; class GFG{ // Recursive function for calculating // product of two numbers. static int product(int x, int y) { // If y is equal to zero then return 0 if (y == 0) return 0; // Recursively calculate // y times sum of x else return (x + product(x, y - 1)); } // Driver code public static void Main () { int x = 10, y = 3; Console.Write(product(x, y)); } } Output30 We can optimize this code by swapping the x and y if y is greater than x. Lets us assume that x = 3 and y = 150 if we follow the above program then the x is added recursively 150 times, but by swapping x,y (i.e. x = 150, y = 3) we only need to add x recursively 3 times. C# // C# program to display the product of // two numbers using Recursion using System; class GFG{ // Recursive function for calculating // product of two numbers. static int product(int x, int y) { // If y is equal to zero then return 0 if (y == 0) return 0; // Recursively calculate // y times sum of x else return(x + product(x, y - 1)); } // Driver code public static void Main() { int x = 3, y = 150; // Swapping the x and y if the y > x. if (x < y) Console.Write(product(y, x)); else Console.Write(product(x, y)); } } Output450 Create Quiz Comment P pulamolusaimohan Follow 0 Improve P pulamolusaimohan Follow 0 Improve Article Tags : C# CSharp-programs Explore IntroductionC# Tutorial 2 min read Introduction to .NET Framework 6 min read C# .NET Framework (Basic Architecture and Component Stack) 6 min read C# Hello World 2 min read Common Language Runtime (CLR) in C# 4 min read FundamentalsC# Identifiers 2 min read Data Types in C# 6 min read C# Variables 4 min read C# Literals 5 min read Operators in C# 7 min read C# Keywords 5 min read Control StatementsC# Decision Making (if, if-else, if-else-if ladder, nested if, switch, nested switch) 5 min read C# Switch Statement 4 min read Loops in C# 4 min read C# Jump Statements (Break, Continue, Goto, Return and Throw) 4 min read OOP ConceptsClass and Objects in C# 4 min read Constructors in C# 5 min read C# Inheritance 3 min read Encapsulation in C# 2 min read C# Abstraction 4 min read MethodsMethods in C# 4 min read Method Overloading in C# 4 min read Method Parameters in C# 4 min read Method Overriding in C# 7 min read Anonymous Method in C# 2 min read ArraysArrays in C# 6 min read Jagged Arrays in C# 4 min read Array Class in C# 5 min read How to Sort an Array in C# | Array.Sort() Method Set - 1 8 min read How to find the rank of an array in C# 2 min read ArrayListArrayList in C# 6 min read ArrayList Class in C# 4 min read C# | Array vs ArrayList 2 min read StringStrings in C# 6 min read C# Verbatim String Literal - @ 5 min read C# String Class 9 min read C# StringBuilder 2 min read C# String vs StringBuilder 3 min read TupleC# Tuple 7 min read C# Tuple Class 3 min read C# ValueTuple 7 min read C# ValueTuple Struct 4 min read IndexersC# Indexers 5 min read C# Multidimensional Indexers 5 min read C# - Overloading of Indexers 3 min read Like