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