Chemistry, asked by mishravinay266, 1 year ago

Write an algorithm to convert fahrenheit to celsius temperature

Answers

Answered by TheRose
0
Algorithm: /* C++ program that reads temperature in Fahrenheit and converts and displays temperature in Celsius */ #include <iostream> using namespace std; int main() { double fahrenheit, celsius; //Reading temperature in Fahrenheit
Answered by yoonyoon
4

Answer:

hers your answer

Explanation:

Step 1: Start.

Step 2: Read F.

Step 3: C=(5(F-32))/9.

Step 4: Print C.

Step 5: Stop.

Similar questions