欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

JAVA——第二章2.17

时间:2023-08-02
问题:科学 风冷温度 利用温度和风速计算新的风冷温度来衡量寒冷度

import java.util.Scanner;public class Cold { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("Enter the temperature in Fahrenheit between -58F and 41F:"); double temperature = input.nextDouble(); System.out.println("Enter the wind speed in miles per hour:"); double speed = input.nextDouble(); double chill = 35.74 + 0.6215 * temperature - 35.75 * Math.pow(speed,0.16) + 0.4275 * temperature * Math.pow(speed,0.16); System.out.println("The wind chill index is " + chill); }}

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。