- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
该程序将提示用户输入介质(空气、水或钢)和距离。然后计算声波穿过介质的距离。
我编写了整个程序,但我没有阅读教授添加到作业中的最后一段内容,即以下段落。现在我陷入困境,因为我不太确定如何将其添加到我的程序中。我正在使用 if 语句,但也许我可以将其添加到其中?
程序提示输入介质:“输入以下内容之一:空气、水或钢:”并读取介质。如果介质不是空气、水或钢,程序将打印消息:“抱歉,您必须输入空气、水或钢”,仅此而已。否则程序会提示输入以下距离。
我尝试了 while
循环并添加另一个 if
语句,但实际上我的问题是语法。因为我从来不需要命令用户输入特定的字符串。
public class SpeedOfSound {
public static void main(String[] args) {
double distance;
double time;
Scanner keyboard = new Scanner(System.in);
//prompt the user to enter the medium through which sound will
System.out.print("Enter one of the following: air, water, or steel:");
String input;
input = keyboard.nextLine();
// prompt the user to enter a distance
System.out.print("Enter distance in feet: ");
distance = keyboard.nextDouble();
// determine if medium is air, water, steele and calculate
if (input.equals("air")) {
time = (distance / 1100);
System.out.println("The total time traveled is " + time + " feet per second.");
}
else if (input.equals("water"))
{
time = (distance / 4900);
System.out.println("The total time traveled is " + time + " feet per second.");
}
else if (input.equals("steel"))
{
time = (distance / 16400);
System.out.println("The total time traveled is " + time + " feet per second.");
}
}
}
我的预期结果是让用户只输入 Air、water 或 Steel。
最佳答案
您的代码存在几个问题,我已自行更正它们。通读注释以更好地理解代码的每个部分。
public class SpeedOfSound
{
/* Best to declare it here so other methods have access to it. */
private static final Scanner keyboard = new Scanner(System.in);
/*
* Declared as a class field so you can use it if you
* have a need for it in addition to time calculated in main.
*/
private static double distance;
/**
* Blocks program execution until a number has been detected as user input.
* @return numeric representation of user input.
*/
public static double getDistance()
{
System.out.println("Enter distance in feet: ");
// CAREFUL: This will throw an exception if the user enters a String
// return keyboard.nextDouble();
while (keyboard.hasNext())
{
/*
* Check if the user input is actually a number
* and if it isn't print an error and get next token
*/
String input = keyboard.nextLine();
try {
return Double.valueOf(input);
}
catch (NumberFormatException e) {
System.out.println("Incorrect input, try again.");
}
}
throw new IllegalStateException("Scanner doesn't have any more tokens.");
}
/**
* Calculate the speed of sound for user input which is limited to:
* <ul>
* <li>Air</li>
* <li>Water</li>
* <li>Steel</li>
* </ul>
* @return total time traveled in feet per second.
*/
public static Double calculate()
{
Double time = null;
//prompt the user to enter the medium through which sound will travel through
System.out.println("Enter one of the following: air, water, or steel:");
// The loop will break the moment time is calculated
while (time == null && keyboard.hasNext())
{
double distance;
String input = keyboard.nextLine();
//determine if medium is air, water, steele and calculate
if (input.equals("air"))
{
distance = getDistance();
time = (distance / 1100);
}
else if (input.equals("water"))
{
distance = getDistance();
time = (distance / 4900);
}
else if (input.equals("steel"))
{
distance = getDistance();
time = (distance / 16400);
}
else System.out.println("Incorrect input, try again.");
}
return time;
}
public static void main(String[ ] args)
{
Double time = calculate();
System.out.println("The total time traveled is " + time + " feet per second.");
}
}
但是,我处理此分配的方法是在排序的 enum
中实现元素,并将大部分 calculate()
方法移动到那里。这将允许您快速创建更多元素,例如 air
、water
和 steel
,而无需创建额外的 if
block 来处理它们。
元素枚举器
public enum Element {
AIR("air", 1100),
WATER("water", 4900),
STEEL("steel", 16400);
private final String name;
private final int factor;
Element(String name, int factor) {
this.name = name;
this.factor = factor;
}
/**
* @param element name of the element to calculate time for
* @return total time traveled in feet per second for given element or
* {@code null} if no element matched the given name.
*/
public static Double getTimeTraveledFor(String element)
{
/* Find an element that matches the given name */
for (Element e : Element.values()) {
/*
* Validate the parameter without case consideration.
* This might be a better way of validating input unless
* for some reason you really want a case-sensitive input
*/
if (e.name.equalsIgnoreCase(element)) {
return SpeedOfSound.getDistance() / e.factor;
}
}
return null;
}
}
修改方法
public static Double calculate()
{
Double time = null;
//prompt the user to enter the medium through which sound will travel through
System.out.println("Enter one of the following: air, water, or steel:");
// The loop will break the moment time is calculated
while (time == null && keyboard.hasNext())
{
String input = keyboard.nextLine();
time = Element.getTimeTraveledFor(input);
if (time == null) {
System.out.printf("%s is not a recognized element, try again.", input);
}
}
return time;
}
关于java - 如何提示用户仅输入他们可以选择的三个选项之一,并在输入错误时显示错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56497590/
我的 friend 编写了一个程序,它比较随机排列的骰子面,以找到分布最均匀的面——尤其是当面不仅仅是序列时。 我将他的程序翻译成 haskell 是因为我一直在寻找一个理由来让别人知道 haskel
我需要对表单中的某些字段进行评论/提示。我的想法是在模型中描述它,就像attributeLabels一样。我该怎么做? 然后它会是理想的,如果 Gii 模型(和 Crud)生成器直接从 mysql 列
我们使用 FastReport 来生成报告。事实上,我们为访问源代码付费。 我们目前使用的是 FastReport 的最新稳定版本。虽然它对于我们的生产来说足够稳定,但每当我编译时,我都会看到以下内容
我需要创建一个对话框/提示,包括用于用户输入的文本框。我的问题是,确认对话框后如何获取文本?通常我会为此创建一个类,将文本保存在属性中。不过我想使用 XAML 设计对话框。因此,我必须以某种方式扩展
我想提示用户是否要执行操作(删除) - 用警报框说"is"或“否”,如果是,则运行删除脚本,如果否,则不执行任何操作 我不太了解 javascript,因此是否有人可以使用 javascript 获得
所以我正在编写一个简单的 JS 代码。我们刚刚开始学习函数。我需要创建一个名为“printStars”的函数。 我需要从用户那里获取一个号码,并根据该号码打印“*”。 这就是我所做的:
我在我的页面上添加了一个提示,但它在页面加载之前加载了。如何仅在整个页面可见时才显示消息? 这是我的提示: if (name == null || name == "") { txt == "No
我在我的页面上添加了一个提示,但它在页面加载之前加载了。如何仅在整个页面可见时才显示消息? 这是我的提示: if (name == null || name == "") { txt == "No
我正在自定义我的 zsh 提示,并发现以下内容来检查是否有任何后台作业: if [[ $(jobs | wc -l) -gt 0 ]]; then # has background job(s)
这个问题在这里已经有了答案: JavaScript object: access variable property by name as string [duplicate] (3 个答案) pa
我正在尝试用 javascript 制作一个简单的数学练习程序。在提示警报中给出不同的值,并将答案与用户输入进行比较。这是代码: Calculations generate(); functio
在这段代码中,尽管我使用了文本对齐属性在“编辑文本” View 的中心设置“提示”。但它无法正常工作。 最佳答案 尝试 关于android - 如何在编辑文本的中心对齐文本(提示),我们在Sta
我正在尝试让我的 EditText 显示一个提示,例如“请在此处输入答案”,当用户点击 EditText 以键入他们的答案时,文本应该消失并留空,以便他们在其中输入答案. 截至目前,这就是我的 .xm
我当前的 android 应用程序中有两个微调器,我想要一个默认值,例如 editText 的 android:hint 功能。有没有办法这样做,但不会将提示添加到填充微调器的字符串数组。例如从微调器
如果我的表单已完全填写,我如何提示“感谢您填写表单,“name”!” function submit_onclick() { if(confirm("Thanks for completing t
我刚刚了解了prompt()命令;我知道 Prompt() 命令以字符串的形式返回用户输入。我正在搞乱下面的程序,我输入了Per“Dead”Ohlin作为男性名字。为什么这有效并且没有引起任何问题?
void openUpNow(FILE *x, FILE *y) { x = fopen("xwhatever", "r"); y = fopen("ywhatever", "r");
我有一个作业正在处理,但我在使用 prompt() 方法时遇到了问题。我看到我可以做一个提示,但我需要几个并且有数量。 例如... 我创建了一个 HTML 表格,其中包含许多艺术家和包含 DVD、CD
我正在学习 Big Nerd Ranch 的 iOS Programming, 2nd Edition,我已经来到第 4 章挑战:标题。该练习暗示我感到困惑;它说我需要做一些我认为不需要做的事情。 到
抱歉,如果这是微不足道的,但我没有找到任何解决此问题的建议。我在 Ubuntu 上,我的 Yii 项目需要 PHPUnit。我已经安装了 PHPUnit 两次,方法是下载 phpunit.phar 并
我是一名优秀的程序员,十分优秀!