博客
关于我
温度转换
阅读量:395 次
发布时间:2019-03-05

本文共 403 字,大约阅读时间需要 1 分钟。

2013夏季,全球范围内的温度都很高,美国甚至有地区达到100华氏度,而宁波的温度也经常超过40摄氏度。很多人可能会好奇,哪种温度更高一些。其实,这取决于你使用的是哪种温度尺度。为了比较这两种温度,我们可以通过转换公式来将华氏温度转换为摄氏温度。

输入一个华氏温度值(浮点数)。

输出对应的摄氏温度值,结果要求保留2位小数。

输入样例:100

输出样例:37.78

我们可以使用以下公式进行转换:[ c = \frac{5 \times (f - 32)}{9} ]其中,( c ) 表示摄氏温度,( f ) 表示华氏温度。

例如,当输入为100华氏度时,计算过程如下:[ c = \frac{5 \times (100 - 32)}{9} = \frac{5 \times 68}{9} = \frac{340}{9} \approx 37.78 ]

所以,100华氏度对应的摄氏温度是37.78摄氏度。

转载地址:http://ovszz.baihongyu.com/

你可能感兴趣的文章
python | algorithms,一个超赞的 集合常用算法的Python 库!
查看>>
python调用jpype 报错:OSError JVM is already started和JVM cannot be restarted
查看>>
python | authlib,一个强大的 Python 库!
查看>>
python | awswrangler,一个高效的 Python 库!
查看>>
python | bashplotlib,一个有趣的Python库!
查看>>
python | bentoml,一个超级厉害的 模型部署 Python 库!
查看>>
python调用jar包的模块_python调用jar包
查看>>
python | black,一个神奇的 代码格式化工具 Python 库!
查看>>
python | bleach,一个超强的 Python 库!
查看>>
python | cartopy,一个有趣的 Python 库!
查看>>
python | cloud-init,一个实用的 云计算 Python 库!
查看>>
python | code2flow,一个神奇的 Python 库!
查看>>
python | cudf,一个超实用的 Python 库!
查看>>
python | daphne,一个非常nice的 Python 库!
查看>>
python调用halcon
查看>>
python | doit,一个非常实用的 Python 库!
查看>>
python | easyocr,一个超厉害的 关于OCR的 Python 库!
查看>>
python | fastFM,一个高级的 Python 库!
查看>>
python | feature_engine,一个实用的 Python 库!
查看>>
python | filelock,一个超酷的 Python 库!
查看>>