(Latest Revision: 02/28/2006)

Recursion: A Program That Makes Palindromes From Lines of Text


PRELIMINARIES:

You need to read chapter two of Carrano before you begin this assignment. You also need to read the directions and examples here: http://www.cs.csustan.edu/~john/Classes/General_Info/progAsgRules/


THE ASSIGNMENT:

Take a look at this script of me running a program.

Your assignment is to write a program that works like the program illustrated by the script.


INPUT:

The program must read a series of lines of text from standard input.

The program must be able to input any series of lines of text -- no matter how long the lines happen to be and no matter how many lines there are. (That includes blank lines and the case where there are no lines at all in the series.)


OUTPUT:

The program writes one line of output for each line of input. The line of output corresponding to a given line of input consists of three items printed one after the other:
  1. The characters of the input line,
  2. A single hyphen, and
  3. the characters of the input line in reverse order.
The output for each line of input is a palindrome. A palindrome is a series of characters that reads the same backwards or forwards. Thus the program you will write is a palindrome-maker.


PROCESSING:

One of the goals of this assignment is to give you practice using recursion. You must therefore write a recursive function that inputs one line of text from standard input and writes the required items to standard output. Your program must call this recursive function to produce the specified output for each line of input.


HELP AND HINTS:

The problem of writing the recursive function that makes the palindromes is very similar to problem that Carrano discusses in chapter two of our textbook, and so be sure to read at least the first half of that chapter before beginning this assignment.

We can discuss details of the assignment in class.


WHAT TO TURN IN:

You will turn in two printer outputs (hardcopies) and you will send me one e-mail messages. Please follow these rules: Here is the list of things you have to turn in:
  1. At the start of class on the due date, place the following items on the "counter" in front of me:

    Make sure that all of the code and script content shows on the paper. Make sure all content is plainly readable and properly formatted.

  2. Send the following item to me by e-mail before midnight on the due date:

    Your final version of the source code, with subject line: CS2500,prog2.f

Note that there are no spaces in the subject line given above. It is important that you do not insert any spaces. My e-mail address is: john@ishi.csustan.edu .


DUE DATES:

For the due dates, see the class schedule.