问题描述
编写一个程序,将地球内部的深度(以千米为单位)作为输入
数据;以摄氏度和华氏度为单位计算并显示该深度的温度.
相关公式为
Write a program to take a depth ( in kilometers) inside the earth as input
data; compute and display the temperature at this depth in Celsius and Fahrenheit degrees.
The relevant formulas are
Celsius = 10 (depth) + 20 ( celsius temperature at depth in km)
Fahrenheit= 1.8 ( celsius) +32
在程序中包括两个功能.功能celsius_at_depth
应该
计算并返回在
中测得的深度处的摄氏温度公里.
函数fahrenheit_at_depth
应将摄氏度转换为
Include two functions in your program. Fuction celsius_at_depth
should
compute and return the Celsius temperature at depth measured in
kilometers.
Function fahrenheit_at_depth
should convert a Celsius
temperature to Fahrenheit.
推荐答案
函数 fahrenheit_at_depth 应该转换为摄氏温度
温度达到华氏温度.
Function fahrenheit_at_depth should convert a Celsius
temperature to Fahrenheit.
将摄氏温度转换为华氏温度的函数的奇怪名称.
:)
Strange name for a function converting Celsius to Fahrenheit.
:)
这篇关于请做我的作业-用C语言进行简单的公式计算的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!