#include #include double celtofar (double celtemp) { double ansfar; ansfar = ((celtemp * 9) / 5) + 32; return ansfar; } double fartocel (double fartemp) { double anscel; anscel = ((fartemp - 32) * 5) / 9; return anscel; } main() { int which; double tempfar,tempcel; start: cout<<"Which do you have? 1 2 or 3"<>which; if(which == 1) { cout<<"Enter Farenheit Temp"<>tempfar; cout<<" Celcius = "<>tempcel; cout<<" Farenheit = "<