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: Reverse the words of a sentence

C# Sharp Basic: Exercise-28 with Solution

Write a C# program to reverse the words of a sentence.

C# Sharp Exercises: Reverse the words of a sentence

Sample Solution:-

C# Sharp Code:

using System;
using System.Collections.Generic;
public class Exercise28 {
 public static void Main() {
  string line = "Display the pattern like pyramid using the alphabet.";
  Console.WriteLine("\nOriginal String: " + line);
  string result = "";
  List < string > wordsList = new List < string > ();
  string[] words = line.Split(new [] {
   " "
  }, StringSplitOptions.None);
  for (int i = words.Length - 1; i >= 0; i--) {
   result += words[i] + " ";
  }
  wordsList.Add(result);
  foreach(String s in wordsList) {

   Console.WriteLine("\nReverse String: " + s);
  }
 }
}

Sample Output:

Original String: Display the pattern like pyramid using the alphabet.  
                                                                       
Reverse String: alphabet. the using pyramid like pattern the Display

Flowchart:

Flowchart: C# Sharp Exercises - Reverse the words of a sentence

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# program and compute the sum of the digits of an integer.
Next: Write a C# program to find the size of a specified file in bytes.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.