编写程序,将摄氏温度(C)转换为华氏温度(F),转换公式为F=9C/5+32

问题描述:

编写程序,将摄氏温度(C)转换为华氏温度(F),转换公式为F=9C/5+32

#include <iostream>#include <iomanip>#include <cmath>using namespace std;int main(){float F,C;cout<<"华氏温度:";cin>>F;C=5.0/9*(F-32);cout<<"华氏"<{...