w3resource

C#: Take a positive number and return the nth odd number

C# Sharp Basic: Exercise-75 with Solution

Nth Odd Number

Write a C# Sharp program that takes a positive number and returns the nth odd number.

Sample Solution:

C# Sharp Code:

using System;
using System.Linq;

namespace exercises
{
    class Program
    {
        // Main method where the program execution begins
        static void Main(string[] args)
        {
            // Display the odd numbers at different positions
            Console.WriteLine("1st odd number: " + test(1));
            Console.WriteLine("2nd odd number: " + test(2));
            Console.WriteLine("4th odd number: " + test(4));
            Console.WriteLine("100th odd number: " + test(100));
        }

        // Function to calculate the nth odd number
        public static int test(int n)
        {
            return n * 2 - 1; // The nth odd number can be calculated using this formula
        }
    }
}

Sample Output:

1st odd number: 1
2nd odd number: 3
4th odd number: 7
100th odd number: 199

Flowchart:

Flowchart: C# Sharp Exercises - Take a positive number and return the nth odd number.

C# Sharp Code Editor:

Previous: Write a C# Sharp program to check the length of a given string is odd or even. Return 'Odd length' if the string length is odd otherwise 'Even length'.
Next: Write a C# Sharp program to get the ASCII value of a given character.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/csharp-exercises/basic/csharp-basic-exercise-75.php