Question: I could really use some help witht his question! Must be in C#. Can be a console of form Application! and bust be basic, and
I could really use some help witht his question!
Must be in C#. Can be a console of form Application! and bust be basic, and easy to understand as I am new to programming.
(Random Sentences and Story Writer) Based on Deitel 16.4 Write an application (console or form) that uses random-number generation to create sentences. Do your own research on random numbers, specifically class Random. Deitel 2012 chapter 7 pages 245+ have some good explanations and examples. Use four arrays of strings, called article, noun, verb and preposition. Create a sentence by selecting a word at random from each array in the following order: article, noun, verb, preposition, article, noun. As each word is picked, concatenate it to the previous words in the sentence. The words should be separated by spaces. When the sentence is output, it should start with a capital letter and end with a period. The program should generate 10 sentences and output them to a text box (or write to Console). The arrays should be filled as follows: The article array should contain the articles "the", "a", "one", "some" and "any"; the noun array should contain the nouns "boy", "girl", "dog", "town" and "car"; the verb array should contain the past-tense verbs "drove", "jumped", "ran", "walked" and "skipped"; and the preposition array should contain the prepositions "to", "from", "over", "under" and "on". Use Random random = new Random(); and random.next() When using WinForm clear a previous output first.
---------------------------------------------------------------------------
Thanks!
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
