no I dont need it
Write a program that processes a sequence of lines of text entered from the keyboard. The program should report a count of the number of words in those lines. Assume that each line is 80 characters or less, and ends with a new line (enter); and that words are delimited by one or more space characters. There may be punctuation (periods and commas) which should be ignored, but there will be no hyphenated words crossing end of lines. Your program should prompt the user to enter another line of text, or to stop. Use functions to solve.
Modify the program to prompt the user to enter a target word, and report the number of occurrences of the target word.
Modify the program to count the number of words containing one letter, two letters, three letters, and so on, up to twelve letters. Any words with more than twelve characters should be grouped together in one category, greater than twelve characters.
Computer Software Engineer
BE Computers