- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
扫描器在调用 nextDouble()
后不等待输入,但在 nextLine()
后它工作正常。
import java.util.*;
public class calc {
public static final Scanner input = new Scanner(System.in);
public static void main(String[] args) {
while(true) {
calculate();
System.out.print("Would you like to run again? Y/N: ");
String repeat = input.nextLine().toLowerCase();
if (!(repeat.equals("y") || repeat.equals("yes"))) {
System.out.println("\nBye!\n");
break;
}
}
}
public static void calculate() {
System.out.print("\nAdd, Subtract, Multiply, Divide or Modulus? : ");
double fsnum, scnum, ans;
String choice = input.nextLine().toLowerCase();
if(choice.equals("add") || choice.equals("subtract") || choice.equals("multiply") || choice.equals("divide") || choice.equals("modulus")) {
System.out.print("Enter the first number: ");
fsnum = input.nextDouble();
System.out.print("Enter the second number: ");
scnum = input.nextDouble();
switch(choice) {
case "add":
ans = fsnum+scnum;
break;
case "subtract":
ans = fsnum-scnum;
break;
case "multiply":
ans = fsnum*scnum;
break;
case "divide":
ans = fsnum/scnum;
break;
case "modulus":
ans = fsnum%scnum;
break;
default:
ans = 0;
break;
}
System.out.println("The answer is: " + ans);
} else {
System.out.println("ERROR: Please select a valid operation.");
}
}
}
输出
Add, Subtract, Multiply, Divide or Modulus? : add
Enter the first number: 3
Enter the second number: 4
The answer is: 7.0
Would you like to run again? Y/N:
Bye!
如您所见,再次运行的最后一个输入被跳过,程序似乎将其假定为“”或 null。
如果选择了无效操作,这似乎不会发生。 -
Add, Subtract, Multiply, Divide or Modulus? : yaya
ERROR: Please select a valid operation.
Would you like to run again? Y/N: n
Bye!
有什么解决办法吗?
我有三个 double 组列表。我想将数组1复制到数组2并将其放入第三个数组中。 // ArrayList 1 [0.0, 1.0, 0.0, 1.0] // ArrayList 2 // Rando
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我正在编写一个带有变量 long balance 的银行程序将美分存入账户。当用户输入金额时,我有一种方法可以将美元转换为美分: public static long convertFromUsd (
如何 DRY(不要重复自己)RSpec 中的 double?例如: let(:s1) {instance_double(Class1, :att
我是 Java 新手,我想知道为什么当你有双 10/4 时却得到 2? double 是否总是必须有小数才能得到正确的答案?谢谢。 public class Super { public st
我正在用 Python 为 Fortran 库编写前端。 Python 模块应该可以在 32 位和 64 位机器上运行;适用于 Windows、Linux 和 Mac。 我想了解一些数据类型的字节宽度
我有两个ajax json。一个用于聊天用户列表列,另一个用于每个用户的消息历史记录。当单击 $('.member_list ul li') 元素时...第二个 ajax 将 li 的值作为 json
从 GHCi 中的 .hs 文件加载 a = 2+2.0 并执行 :t a 显示 a::Double。 另一方面,在 GHCi 中执行 let b = 2+2.0 和 :t b 会显示 b::Frac
我是一名优秀的程序员,十分优秀!