Lab 5

2/24/04

Task: Write a program that asks the user whether they want to convert a temperature from Fahrenheit to Celsius or vice versa. The program should then print out the appropriate conversion. The program should then ask the user if they want to enter another temperature. If the user answers yes, it should ask for another temperature and do the conversion.

The program should continue to do conversions until the user tells it to stop.

Use functions to do the conversions.

Purpose: The primary purpose of this lab is to introduce while loops.