C Write Program Receive 10 Temperatures Expressed Degree Celsius Convert Fahrenheit Displa Q37201782

In C++ write a program that will receive 10 temperaturesexpressed in degree Celsius convert them to fahrenheit and displaythe converted temperature to the screen. After 10 temperatures havebeen processed the word “All temperature processed” are to bedisplayed to the screen. (formula F= (9/5)*C+32).


Answer


#include <iostream>using namespace std;int main() { double f, c; for (int i = 0; i < 10; ++i) { cout << “Enter temperature in celsius: “; cin >> c;

OR
OR

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.