Question 3
/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
using namespace std;
int main()
{
char ch;
cout << "Type character: "; // Type a character and press enter
cin >> ch;
if(ch == 'f')
{
double f;
cout << "Enter Temparature in Fahrenheit: ";
cin >> f;
// Calculate Celsius
double result_in_celsius = (f - 32) * ( 5 / 9.0 );
cout << "Temparature in Celsius is: " << result_in_celsius;
}
else if(ch == 'c')
{
double c;
cout << "Enter Temparature in Celsius: ";
cin >> c;
// Calculate Fahrenheit
double result_in_fahrenheit = ((9.0 / 5) * c) + 32;
cout << "Temparature in Fahrenheit is: " << result_in_fahrenheit;
}
else
{
cout << "Invalid character it must be c or f.";
return 0;
}
}