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
Show 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