Question
Write a program to take a depth in kilometers inside the earth as input data; calculate and display the temperature at this depth in both
Write a program to take a depth in kilometers inside the earth as input data; calculate and display
the temperature at this depth in both degrees Celsius and degree Fahrenheit. The formulas are:
Celsius temperature at depth in km: celsius = 10 * depth(km) + 20 Convert celsius to Fahrenheit: Fahrenheit = 1.8 * celsius + 32
You should have 4 functions in your program.
void print_introduction (){}
// prints out information to tell the user what this program does.
double celsius_at_depth (double depth){}
// computes and returns the celsius temperature at a depth measured in kilometers.
double celsius_to_fahrenheit (double celsius){}
// converts a Celsius temperature celsius to Fahrenheit.
void print_conclusion(double depth){}
// display the conclusion that what is the temperature in both Celsius and Fahrenheit at depth of the earth
Additional requirement There is no calculation in main function. The pseudo code steps for main function as follows:
1. print introduction by calling print_introduction function 2. ask user to enter the depth 3. get users input 4. print out the conclusion by calling print_conclusion function
5. ask user if he/she wants to continue 6. get users input 7. repeat step 2 to step 6 if user picks Y or y 8. Stop program
All the necessary calculations are done in print_conclusion function. celsius_at_depth and celsius_to_fahrenheit functions are called from print_conclusion function.
There is no calculation in main function. No calling celsius_at_depth or celsius_to_fahrenheit functions in main function.
Sample Run
Hello! The program will tell you the temperature of the earth at any depth. Enter a depth in KM: 10 The temperature of the earth at a depth of 10 KM is 120 in Celsius, and 248 in Fahrenheit. Would you like to do it again? (Y/N): y Enter a depth in KM: 20 The temperature of the earth at a depth of 20 KM is 220 in Celsius, and 428 in Fahrenheit. Would you like to do it again? (Y/N): n Program ended with exit code: 0
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started