/** 6. Write a function with prototype void fun(double) that prints out an appropriate message depending on the user-entered temperature: greater than 90 : ``too hot'' 75 to 89 : `` hot'' 60 to 74 : ``mild'' 35 to 60 : ``chilly'' less than 35 : ``cold'' What will happen if you entered a char for the temperature? Now use function overloading to allow the user to input the temperature as well as a char, 'F' for Fahrenheit and 'C' for Celsius, and the function outputs the appropriate message. **/ #include using namespace std; void fun(double&); void fun(double&, char&); int main() { double a; char scale; cout <<"Enter temperature"<>a; fun(a); //Now prompt for temperature and scale cout <>a>>scale; fun(a,scale); return 0; } void fun(double& a){ if(a>=90){ cout<<"Too hot"<=75){ cout<<"Hot"<=60){ cout<<"Mild"<=35){ cout<<"Chilly"<