我是靠谱客的博主 儒雅河马,最近开发中收集的这篇文章主要介绍java语言程序设计(基础篇)第十版编程练习题[2.10],觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

(科学:计算能量)编写程序,计算将水从初始温度加热到最终温度所需的能量。程序应该提示
用户输人水的重量(以千克为单位),以及水的初始温度和最终温度。计算能量的公式是:

Q = M × (最终温度 - 初始温度)X 4184
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package dome2_10;

import java.util.Scanner;

/**
 *
 * @author Administrator
 */
public class Dome2_10 {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        Scanner in = new Scanner(System.in);
        System.out.print("Enter the amount of water in kilograms:");
        double water = in.nextDouble();
        System.out.print("Enter the initial temperature:");
        double initialtemperature = in.nextDouble();
        System.out.print("Enter the final temperature:");
        double finaltemperature = in.nextDouble();
        double energy = water * (finaltemperature - initialtemperature) * 4184;
        System.out.println("The energy needed is " + energy);
    }
    
}

最后

以上就是儒雅河马为你收集整理的java语言程序设计(基础篇)第十版编程练习题[2.10]的全部内容,希望文章能够帮你解决java语言程序设计(基础篇)第十版编程练习题[2.10]所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部