Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a Java program that calculates the energy needed to heat water from an initial temperature to a final temperature. The program should prompt the
Write a Java program that calculates the energy needed to heat water from an initial temperature to a final temperature. The program should prompt the user to enter the amount of water in kilograms and the initial and final temperatures of the water. The formula to compute the energy is : Q = M*(finaltemperature initialtemperature) *4184 Where M is the weight of water in kilograms, initial and final temperatures are in degrees Celsius, and energy Q is measured in Joules.
The sample run is as below: run: Enter the amount of water in kilograms: 15 Enter the initial temperature: 12 Enter the final temperature: 15 The energy needed is 188280.0 BUILD SUCCESSEUIStep 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