我目前正在用 Java 创建一个类似于下面的程序:它要求初始化变量 AC。
double AC;
System.out.println("Please choose A or B")
If(Condition to see if it A)
{
AC = 1
}
else if(Condition to see if it B)
{
AC = 2
}
else
{
System.out.println("Please Enter a valid choice!")
}
double ab = AC * 2
这将给出“必须初始化变量 AC”的错误。造成这种情况的原因是如果用户不选择 A 或 B,则在双 ab 中将没有 AC 可使用。我该如何解决这个问题?谢谢