博客
关于我
温度转换
阅读量: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 | 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 库!
查看>>
python | fire,一个强大的 Python 库!
查看>>
python | flanker,一个神奇的 Python 库!
查看>>
python | flower,一个强大的 Python 库!
查看>>
python | funcy,一个超强的 提供函数式编程工具 Python 库!
查看>>
python | ggplot,一个超强的 Python 库!
查看>>
python | grab,一个强大的 Python 库!
查看>>
python | gunicorn,一个非常实用的 Python 库!
查看>>
python | h5py,一个无敌的关于 HDF5 的 Python 库!
查看>>
python | huey,一个非常厉害的 任务调度 Python 库!
查看>>
python | hypothesis,一个有趣的 Python 库!
查看>>
python | Indico,一个超酷的 Python 库!
查看>>
python | isort,一个有趣的 自动整理导入语句 的Python 库!
查看>>