- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
抱歉,我很难得到这个循环,我想我会停止调整它并询问。我希望决策结构循环,我希望它通过输入“4”来停止循环,并且我希望每次都打印“进行选择”提示。谢谢!
public class HW1Geo {
public static void main(String[] args) {
// This program was created in order to allow the user to calculate the areas of rectangles, triangles, and circles.
System.out.println("Thank you for using the MCCH GeoCal program. \nWith this program, you will be able to find the area of three kinds of shapes.\nThis program uses doubles.");
System.out.println();
Scanner keyboard = new Scanner(System.in);
System.out.println("Please make a selection:");
System.out.println("1 - Area of a rectangle");
System.out.println("2 - Area of a triangle");
System.out.println("3 - Area of a circle");
System.out.println("4 - End program");
int select = keyboard.nextInt();
// This decision structure with a nested loop will allow the user to continue to make selections until they decide to quite the program.
while(select != 4) {
if(select == 1) {
System.out.println("Enter the length of the rectangle.");
double length = keyboard.nextDouble();
System.out.println("Enter the width of the rectangle");
double width = keyboard.nextDouble();
System.out.println("The area of the rectangle is: " + rectArea(length, width));
break;
}
else if(select == 2) {
System.out.println("Enter the height of the triangle.");
double height = keyboard.nextDouble();
System.out.println("Enter the size of the base of the triangle.");
double base = keyboard.nextDouble();
System.out.println("The area of the triangle is: " + triArea(height, base));
break;
}
else if(select == 3) {
System.out.println("Enter the radius of the circle.");
double radius = keyboard.nextDouble();
System.out.println("The area of the circle is: " + cirArea(radius));
break;
}
else if(select != 1 && select != 2 && select != 3 && select != 4) {
System.out.println("Incorrect input.");
break;
}
}
System.out.println("Thank you for using this program.");
}
// This method is used to find the area of a rectangle.
public static double rectArea(double length, double width) {
double area = length * width;
return area;
}
public static double triArea(double height, double base) {
double area = 0.5 * base * height;
return area;
}
public static double cirArea(double radius) {
double area = Math.PI * Math.pow(radius, 2);
return area;
}
}
最佳答案
你可以使用do-while句法{在这里编写代码}while(条件)
关于java - 我如何循环这个决策结构?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60158551/
是否有显示测试用例数量以提供决策/条件覆盖率的工具? 例如: if(x>0) if(x0) 3 个案例足以覆盖决策/条件。 if(x>0) if(x0) 4 个案例足以覆盖决策/条件。 这是真的吗?
我正在尝试找到一种优雅的方式来实现易于维护的决策算法,因为决策的条件可能经常变化。 我将尝试更具体地举一个例子: 假设我正在尝试管理一家餐厅厨房的 cooking 厨师团队。 每个厨师都知道如何 co
我需要一个 Android Activity ,它应该显示一个字段,如带有图像的标题和其下方的几个动态生成的项目(我认为是 1 到 100)。如果我不想让 headsection 滚动,我会使用 Li
我正在编写函数以从值列表中提供最大值(value)。我的问题是如果所有值都相同怎么办?例如, 30,29,34,45 简单。最大值为 45。现在, 20,20,20,20 这里的最大值是20吗?或者没
我需要知道哪个检索事件日志的速度更快,但我在比较中找不到:假设需要查找的所有列都有btree索引,需要查找的json对象中的所有键都有GIN索引。 case 1: ActivityID (in
我需要在我的 iPhone 应用程序中显示一个表格: neither the number of cells nor the contents are known at compile time, b
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
这是针对在 MinGW/Windows 上使用 SDL 的小型游戏项目。 我正在研究一个物理引擎,我的想法是拥有一个Physics::Object,所有物理对象都应该派生自它,并且它会在全局 Phys
我有一个小的 LINQ 查询来填充下拉控件(WinForms Telerik 应用程序),其中的数据行显示两个值(ITNBR 和描述): var query = from i in db.ItemMa
我正在尝试使用 antlr 3 为我的语法生成词法分析器和解析器。有人可以解释这个错误是什么意思吗? error(211): T.g:14:6: [fatal] rule stmt has non-L
partykit包很好地表示了决策树。我遇到的唯一问题是标签很长然后它们重叠。是否可以移动这些标签以防止它(见下图中的蓝色箭头)? library("rpart") library("partykit
所以我环顾四周,似乎找不到合适的解决方案来解决我的问题。 问题 在我的布局中,我希望能够根据数据库中的内容选择在运行时是否存在导航项: 当前布局(导航栏) @Html.Acti
我目前正在创建一个机器学习 jupyter 笔记本作为一个小项目,并希望显示我的决策树。但是,我能找到的所有选项都是导出图形然后加载图片,这相当复杂。 所以想问问有没有办法不用导出加载图形,直接显示我
grammar AdifyMapReducePredicate; PREDICATE : PREDICATE_BRANCH | EXPRESSION ; PREDICA
我是一名优秀的程序员,十分优秀!