[solved]-Write Program Reads Unspecified Number Lines Text Stdin Terminated Eof Line Contain One Si Q39077485
Write a program that reads an unspecified number of lines oftext from STDIN, terminated with EOF. Each line will contain onesingle string with no whitespace. (so the input will consist ofzero or more strings.) Each string will be made up of onlyalphanumeric characters (so a-z, A-Z, 0-9)
Your program should store all of the four length strings and allof the five length strings. Discard any inputs with fewer than fouror more than five characters. The words should be stored in alllowercase. Use <cctype>
After input is complete, if the number of four and five lengthstrings input is equal, then your program should have no output.Otherwise output either the (lowercased) four or five lengthstrings, whichever is greater in number, one per line.
Expert Answer
Answer to Write a program that reads an unspecified number of lines of text from STDIN, terminated with EOF. Each line will contai… . . .
OR

