0
在我的代碼中,我需要打印出tax
變量。這不起作用,我想我知道我爲什麼不知道該怎麼做。我需要初始化變量tax
,但我不知道如何在主類中。這是我的代碼。如何打印變量
System.out.println("Enter your income!");
double income = scan.nextDouble();
if (income < 50000)
{
double tax = income/100;
}
else if (income < 75000)
{
double tax = income/100 * 2;
}
else if (income < 100000)
{
double tax = income/100 * 3;
}
else if (income < 250000)
{
double tax = income/100 * 4;
}
else if (income < 500000)
{
double tax = income/100 * 5;
}
else if (income > 500000)
{
double tax = income/100 * 6;
}
爲什麼不用taged java? –
'tax'只存在於聲明的塊中('if'語句)。你將不得不在你的'if'之外聲明它,只需在'if'中給它賦予適當的值。 – Gavin
您需要定義變量以外的變量if勺 –