Provide an application that allows users to select one of the following convertions:  Convert temperature in degrees Celsius to Fahrenheit: read the degree in Celsius from the keyboard, then convert it to Fahrenheit degree  Convert temperature in degrees Fahrenheit to Celsius: read the degree in Fahrenheit from the keyboard, then convert and display the temperature in Celsius  After finishing one above task, display the menu again to allow users to continue using the program until users want to exit.  The calculation to convert temperature should be done in the user-defined functions.  You should clean up the screen before display the result. Using: system(\"cls\");  The output should be in the following format:  TEMPARATURE CONVERTER Celsius Degree: 30 Fahrenheit Degree: 86  TEMPARATURE CONVERTER Fahrenheit Degree: 86 Celsius Degree: 30  WHAT WE NEED TO KNOW TO DO THE PROGRAM  WHAT WE NEED TO KNOW TO DO THE PROGRAM  -You should know how to redisplay the menu after finishing an option task by using do.. white loop. Read the topic \"Redisplay the menu by using do..while loop\" from the page Learn From Questions on eCampus -Practice to create and call User-defined functions. Read the topic: User-Defined function from the p3ge Learn From Questions on eCampus  -Practice to display the output in nice format -Clean the screen by: system(\"cls\");  PSUEDO-CODE  Provide the pseudo-code at the top of source file  HOW TO DO THE LAB  Create the project named FA2l6LAB5_PART2_yourLastName then add the .cpp file named as FA2016LAB5_TemparatureConverter_yourLastName then based on the pseudo-code, write the C++ code for the application.  Remember to write 2 user-defined function for 2 selected tasks from the menu Display the decimal numbers with 1 decimal digit  Using the following formulas:  Censius Temperature = (Fahrenheit Temperature - 32) * 5/9; Fahrenheit Temperature = 9/5 * Censius Temperature + 32;
#include<iostream>
 using namespace std;
 float fahrenheit_to_celsius(float fahrenheit);
 float celsius_to_farharenheit(float celsius);
 int main(){
    int choice;
    float celsius1, celsius2, fahrenheit1, fahrenheit2;
 cout << \"Available choices of conversion: \ 1.Fahrenheit to Celsius \ 2.Celsius to Fahrenheit\ \ \";
    cout << \"Please select your choice of conversion:\";
    cin >> choice;
    switch (choice){
        case 1:
            cout << \"Enter the temperature in Fahrenheit : \";
        cin >> fahrenheit1;
        celsius1 = fahrenheit_to_celsius(fahrenheit1);
        cout << \"The temperature in Celsius : \" << celsius1 << endl;
        cout << \"The temperature in Fahrenheit : \" << fahrenheit1 << endl;
        case 2:
            cout << \"Enter the temperature in Celsius : \";
        cin >> celsius2;
        fahrenheit2 = celsius_to_farharenheit(celsius2);
        cout << \"The temperature in Celsius : \" << celsius2 << endl;
        cout << \"The temperature in Fahrenheit : \" << fahrenheit2 << endl;
        default:
            cout << \"Thank You.\ \";
    }
   
   
 }
 float fahrenheit_to_celsius(float fahrenheit){
    float celsius = (fahrenheit-32)*(5/9);
    return celsius;
 }
 float celsius_to_farharenheit(float celsius){
    float fahrenheit = (celsius * 9.0) / 5.0 + 32;
    return fahrenheit;
 }