C# Program to Reverse Words in Command Line

This C# program takes multiple words as input from the command line and displays them in reverse order. The program reads the input, splits the words into an array, and then reverses the order before printing them. This exercise will help you understand how to manipulate arrays and work with command-line arguments in C#.



Group

Functions in C#

Objective

1. Define a function named "Reverse" to reverse the order of words in a given string.
2. Use the "args" array from the command line input to receive the words.
3. Split the string into words and reverse their order.
4. Print the reversed words to the console.

Write a C# program named "reverse", which receives several words in the command line and displays them in reverse order, as in this example:

reverse one two three
three two one

Example usage:
reverse one two three
Output: three two one

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Function to reverse the order of words in a string array
    public static void Reverse(string[] words)
    {
        // Loop through the array in reverse order and print each word
        for (int i = words.Length - 1; i >= 0; i--)
        {
            // Print the word followed by a space
            Console.Write(words[i] + " ");
        }
        Console.WriteLine(); // Print a new line after reversing words
    }

    public static void Main(string[] args)
    {
        // Call Reverse function and pass the command line arguments as words
        Reverse(args);
    }
}

 Output

three two one 

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