// convert Fahrenheit to Celcius do while 'Y' #include using namespace std; void main() { int fahr; double celcius; char answer='Y'; do { cout<<"Enter Fahrenheit temperature: "; cin>>fahr; // read temperature celcius=(fahr-32)*5.0/9; //force to decimal cout<>answer; } while (answer=='Y' || answer=='y'); //accept either Y or y } // main