Write the simplest program possible in your language of choice containing your 'main' and any other functions you may need that will: A. Read a sequence of words up to a maximum of 64 words from std input. Before reading the input, prompt the user to enter the words. B. Do not prompt or expect the user to give you the number of words to be entered. Perform any required error checking. C. Check to see if there are any duplicate words in the input read. D. If there are no duplicates, print out to std output the message 'No Duplicates! E. If there are duplicates, print out on separate lines each word that is duplicated and the number of instances of that word. The results should be sorted in ascending order using Insertion Sort. F. If you write helper functions to your main, ensure that all input and output happens only in main. G. You are only allowed to use basic string arrays as well as code your own sorting function - do not use any advanced data structures or sorting algorithms pre-built into your language platform. H. Take screenshot of your program execution with the following samples. However, your program will be tested with my own input. Sample Inputs THE RAIN IN MAINE. THE RAIN IN MAINE IN THE MONTH OF MAY. The rain in Maine in the month of May. The rain in Maine in the month of May makes May the rainiest month for Maine in the year. Sample Outputs No Duplicates IN 2 THE 2 in 2 Maine 2 May 2 in 3 month 2 the 3

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
icon
Concept explainers
Question

in c++ fast please

Write the simplest program possible in your language of choice containing your 'main' and any other
functions you may need that will:
A. Read a sequence of words up to a maximum of 64 words from std input. Before reading the input,
prompt the user to enter the words.
B. Do not prompt or expect the user to give you the number of words to be entered. Perform any
required error checking.
C. Check to see if there are any duplicate words in the input read.
D. If there are no duplicates, print out to std output the message 'No Duplicates'.
E. If there are duplicates, print out on separate lines each word that is duplicated and the number of
instances of that word. The results should be sorted in ascending order using Insertion Sort.
F. If you write helper functions to your main, ensure that all input and output happens only in main.
G. You are only allowed to use basic string arrays as well as code your own sorting function - do not
use any advanced data structures or sorting algorithms pre-built into your language platform.
H. Take screenshot of your program execution with the following samples. However, your program
will be tested with my own input.
Sample Inputs
THE RAIN IN MAINE.
THE RAIN IN MAINE IN THE MONTH OF MAY.
The rain in Maine in the month of May.
The rain in Maine in the month of May makes
May the rainiest month for Maine in the year.
Sample Outputs
No Duplicates
IN 2
THE 2
in 2
Maine 2
May 2
in 3
month 2
the 3
Transcribed Image Text:Write the simplest program possible in your language of choice containing your 'main' and any other functions you may need that will: A. Read a sequence of words up to a maximum of 64 words from std input. Before reading the input, prompt the user to enter the words. B. Do not prompt or expect the user to give you the number of words to be entered. Perform any required error checking. C. Check to see if there are any duplicate words in the input read. D. If there are no duplicates, print out to std output the message 'No Duplicates'. E. If there are duplicates, print out on separate lines each word that is duplicated and the number of instances of that word. The results should be sorted in ascending order using Insertion Sort. F. If you write helper functions to your main, ensure that all input and output happens only in main. G. You are only allowed to use basic string arrays as well as code your own sorting function - do not use any advanced data structures or sorting algorithms pre-built into your language platform. H. Take screenshot of your program execution with the following samples. However, your program will be tested with my own input. Sample Inputs THE RAIN IN MAINE. THE RAIN IN MAINE IN THE MONTH OF MAY. The rain in Maine in the month of May. The rain in Maine in the month of May makes May the rainiest month for Maine in the year. Sample Outputs No Duplicates IN 2 THE 2 in 2 Maine 2 May 2 in 3 month 2 the 3
Expert Solution
Step 1

Your C++ program is given below as you required with an output. 

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Operators
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education