Question: in c++ thank you Write a C+ program which will prompt the user to enter some words and then sort the words in alphabetical order
Write a C+ program which will prompt the user to enter some words and then sort the words in alphabetical order and display them Requirements: Name the source file for your program program7.cpp. Store the words entered by the user in an array of strings (each element of the array is of type string) The maximum number of words for which the program needs to work must be set using the following constant (a global constant at the top of the program): const int NUM.NORDS = 10; Then, throughout the program wherever this size is needed, the constant must be used rather than a literal number You can assume that each word entered by the user will not contain any spaces, so the words can be read in using "cin >>". The program must stop prompting for further input if the maximum number of words is reached, or if the user enters "O" as one of the words. If the user enters "O" to end the input sequence, then the "0" must not be counted as one of the words sorted and later displayed. Sorting of the words must be done using the Bubble Sort method, implemented in a function with this prototype: void bubbleSort (string words ], int num); This function must sort the first num strings of the words array from "smallest" to "largest" as determined by the compare function (for any strings, whether of letters or not), which corresponds to alphabetical order if the strings are of letters. Don't do anything special to account for upper- or lower-case letters- all upper-case letters wil be considered as coming before all lower-case letters (this is known as lexicographic sorting) For Extra Credit, see the extra credit
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
