akosiraff

Download: Duplicate Word Removal C#

Feb 12th, 2013
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/duplicate-word-removal-c/
  3. (Duplicate Word Removal) Write a console application that inputs a sentence from the user (assume no punctuation),
  4. then determines and displays the non-duplicate words in alphabetical order. Treat upppercase and lowercase letters the same.
  5. [Hint: you can use String method Split with no arguments, as in sentance.split(), to break a sentance into
  6. an array of Strings containing the individual words. By default, Split uses spaces as delimiters. Use Strings
  7. method ToLower in the Select and Order By clauses of your LINQ query to obtain the lower case version of each word.]
  8. Download: http://solutionzip.com/downloads/duplicate-word-removal-c/
Add Comment
Please, Sign In to add comment