C语言编程:输入一个华氏温度,要求输出摄氏温度,公式为:

日期:2019-11-12 04:17:26 人气:3

C语言编程:输入一个华氏温度,要求输出摄氏温度,公式为:

#include int main(){ double c, f; printf ("请输入华氏温度:"); scanf ("%lf", &f); c=5.0/9*(f-32); printf ("%g华氏温度是%.2f摄氏温度\n", f, c); return 0;} 扩展资料: #include using namespace std; int main() { float f,c;
    A+
热门评论