java语言程序设计(基础篇)第十版编程练习题[2.12]

编程入门 行业动态 更新时间:2024-10-11 11:22:12

java语言程序设计(基础篇)第十版编程<a href=https://www.elefans.com/category/jswz/34/1768594.html style=练习题[2.12]"/>

java语言程序设计(基础篇)第十版编程练习题[2.12]

(物理:求出跑道长度)假设一个飞机的加速度是 a 而起飞速度是 v, 那么可以使用下面的公式计算出飞机起飞所需的最短跑道长度:

		  v²
跑道长度 = ——2a

编写程序,提示用户输入以米 / 秒(m/s)为单位的速度 v 和以米 / 秒的平方(m/s²) 为单位的加速度 a, 然后显示最短跑道长度。

/** 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_12;import java.util.Scanner;/**** @author Administrator*/
public class Dome2_12 {/*** @param args the command line arguments*/public static void main(String[] args) {// TODO code application logic hereScanner in = new Scanner(System.in);System.out.print("Enter speed and acceleration: ");double speed = in.nextDouble();double acceleration = in.nextDouble();double length = Math.pow(speed,2) / (2 * acceleration);System.out.println("The minimum runway length for this airplane is " + length);}}

更多推荐

java语言程序设计(基础篇)第十版编程练习题[2.12]

本文发布于:2024-02-13 10:40:12,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1758201.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:练习题   语言程序设计   基础   第十版   java

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!