用C语言编写一个程序:华氏温度和摄氏温度的转换公式为c=(f-32)/1.8,

日期:2019-12-02 04:10:47 人气:1

用C语言编写一个程序:华氏温度和摄氏温度的转换公式为c=(f-32)/1.8,

#include #include void main() { double celsius=0.0; double fahrenheit=0.0; double celsius_to_fahrenheit=0.0; double fahrenheit_to_celsius=0.0; char choose=0; printf("请选择你要查询的温度计量单位 摄氏度(c)和 华氏度(f):"); scanf("%c",&choos
    A+
热门评论