博客
关于我
温度转换
阅读量: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/

你可能感兴趣的文章
prometheus+alertmanager+grafana监控部署教程
查看>>
Prometheus+Grafana构建智能化Kubernetes监控系统实战
查看>>
Prometheus+SpringBoot应用监控全过程详解
查看>>
Prometheus+SpringBoot应用监控全过程详解
查看>>
prometheus安装
查看>>
Prometheus实战教程:监控Kafka消息
查看>>
Prometheus实战教程:监控mysql数据库
查看>>
Prometheus实战教程:监控Nginx状态
查看>>
prometheus常用exporter下载地址大全
查看>>
Prometheus快速搭建与监控Linux系统实战
查看>>
prometheus报警与恢复告警的格式
查看>>
Pytorch中安装 torch_geometric 详细图文操作(全)
查看>>
prometheus监控docker容器实战
查看>>
Prometheus监控k8s集群使用邮箱和微信告警!
查看>>
Prometheus监控mysq数据库实战
查看>>
prometheus监控nginx实战
查看>>
Prometheus监控redis数据库实战
查看>>
Prometheus监控教程:使用Grafana展示主机基本信息
查看>>
pytorch中如何使用预训练词向量
查看>>
Prometheus监控教程:使用PromQL查询监控数据(上篇)
查看>>