我是靠谱客的博主 负责香水,最近开发中收集的这篇文章主要介绍第二章第二题(计算圆柱体的体积)(Compute the volume of a cylinder),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

2.2(计算圆柱体的体积)编写程序,读入圆柱体的半径和高,并使用下列公式计算圆柱的体积:

面积 = 半径 × 半径 × π
体积 = 面积 × 高
下面是一个运行示例:
Enter the radius and length of a cylinder:5.5 12
The area is 95.0331
The volume is 1140.4

2.2(Compute the volume of a cylinder) Write a program that reads the radius and length of a cylinder and computes the area and volume using the following formulas:

area = radius × radius × π
volume = area × length
Here is a simple run:
Enter the radius and length of a cylinder:5.5 12
The area is 95.0331
The volume is 1140.4

下面是参考答案代码:

import java.util.*;

public class CalculateCylinderVolumeQuestion2 {
	public static void main(String[] args) {
		double RadiusCylinder,LengthCylinder,AreaCylinder,VolumeCylinder;
		
		System.out.print("Enter the radius and length of a cylinder : ");
		Scanner R_L_input = new Scanner(System.in);
		
		RadiusCylinder = R_L_input.nextDouble();
		LengthCylinder = R_L_input.nextDouble();
		
		AreaCylinder = RadiusCylinder * RadiusCylinder * Math.PI;
		VolumeCylinder = AreaCylinder * LengthCylinder;
		
		System.out.println("The area is " + AreaCylinder);
		System.out.println("The volume is " + VolumeCylinder);
		
		R_L_input.close();
	}
}

运行结果:
在这里插入图片描述

注:编写程序要养成良好习惯
如:1.文件名要用英文,具体一点
2.注释要英文
3.变量命名要具体,不要抽象(如:a,b,c等等),形式要驼峰化
4.整体书写风格要统一(不要这里是驼峰,那里是下划线,这里的逻辑段落空三行,那里相同的逻辑段落空5行等等)

最后

以上就是负责香水为你收集整理的第二章第二题(计算圆柱体的体积)(Compute the volume of a cylinder)的全部内容,希望文章能够帮你解决第二章第二题(计算圆柱体的体积)(Compute the volume of a cylinder)所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部