Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Exercises: Print the natural numbers from n to 1

C# Sharp Recursion: Exercise-2 with Solution

Write a program in C# Sharp to print numbers from n to 1 using recursion.

Pictorial Presentation:

C# Sharp Exercises: Print the natural numbers from n to 1

Sample Solution:

C# Sharp Code:

using System;

class RecExercise1
{
    static int printNatural(int ctr,int stval)
    {
	if (ctr < 1)
	{
	    return stval;
	}

	Console.Write(" {0} ",ctr);
		ctr--;
	return printNatural(ctr,stval);
    }
    
    static void Main()
    {
	Console.Write("\n\n Recursion : Print the natural numbers from n to 1 :\n");
	Console.Write("--------------------------------------------------------\n");
	Console.Write(" How many numbers to print : ");
	int ctr= Convert.ToInt32(Console.ReadLine());
	// Call recursive method with two parameters.	
	printNatural(ctr,1);
	Console.Write("\n\n");
    }
}

Sample Output:

Recursion : Print the natural numbers from n to 1 :                                                          
--------------------------------------------------------                                                      
 How many numbers to print : 20                                                                               
 20  19  18  17  16  15  14  13  12  11  10  9  8  7  6  5  4  3  2  1 

Flowchart :

Flowchart: C# Sharp Exercises - Print the natural numbers from n to 1

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a program in C# Sharp to print the first n natural number using recursion.
Next: Write a program in C# Sharp to find the sum of first n natural numbers using recursion.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.