
Patrick B. answered 12/04/19
Math and computer tutor/teacher
declare var C,F
output "PLEASE INPUT THE CELSIUS TEMPERATURE"
input C
F = 9*C/5 + 32
output " CELSIUS TEMPERATURE IS ", C
output "FAHRENHEIGHT TEMPERATURE IS ",F
Here's C++
using namespace std;
#include <iostream>
int main()
{
double C,F;
cout << " PLEASE INPUT THE CELSUIS TEMPERATURE :>";
cin >> C;
F = 9*C/5 + 32;
cout << " CELSIUS TEMPERATURE IS " << C << endl;
cout << " FAHRENHEIT TEMPERATURE IS " << F << endl;
}