CSCI 160 Assignment 5, Fall 1997 DUE: The assignment is due on or before 3am, Saturday November 15. This assignment is worth 20 objective points. Your solution will be graded on the basis of its run-time behaviour and on the clarity and simplicity of the source code. See the marking guide in ~csci160/Pex5/markingGuide. With regard to simplicity and clarity, follow the ASAP principle: as simple as possible. INSTRUCTIONS: Issue the command: cp -r ~csci160/Pex5 . to copy the assignment work directory to your account. Locate to Pex5 and use the CSCI 160 Exercise Development Utility to test, verify and submit you assignment (enter the command make help for instructions on how to use the utility). This assignment is to be completed by each student. Submit only one implementation; if you send more than one, we will discard all but the last one. The assignment identifier is CSCI 160 Pex 5 (see Course Information Sheet). Your assignment must be received before the due date and time. In addition, your e-mail must have the assignment identifier as its subject. All other methods of submission will not be accepted. You will receive no credit for an assignment submission that fails to adhere to this convention. QUESTION: Description =========== Write a C++ program that will read a sequence of character from stdin and determine if the sequence is a palindrome. Your palindrome test should be case insensitive and should ignore non alpha-numeric characters. Sample Output ============= Enter the sequence of characters: The last word in the sequence must be terminated with a period (.) Nurses run. The sequence is a palindrome. Enter the sequence of characters: The last word in the sequence must be terminated with a period (.) Nurses ru. The sequence is NOT a palindrome. Assumptions/Restriction ======================== The sequence is composed of words. The last word in the sequence is terminated with a period (.) The maximum length of a word is 79. The maximum number of alpha-numeric characters in the sequence is 79. You must use the CString class to store and manipulate strings. Test Set ======== see ~csci160/Pex5/tinp