从华氏温度转换为摄氏温度

#includestdio.hint main (void){float c;float f = 127.0;c = (f - 32) / 1.8;printf(%f degrees Fahrenheit equals %f Celsius \\n, f, c);

编程学习网为您整理以下代码实例,主要实现:从华氏温度转换为摄氏温度,希望可以帮到各位朋友。

#include<stdio.h>

int main (voID)
{
    float c;
    float f = 127.0;

    c = (f - 32) / 1.8;

    printf("%f degrees Fahrenheit equals %f Celsius \n", f, c);

    return 0;
}
@H_419_2@
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐