這是我的程序的一部分。我必須確定氣體量不會超過最高氣體容量。我不知道如何寫其他部分?我要求用戶輸入當前的氣體,它應該是小於或等於30如何在訪問器中使用if-else語句?
private final int GAS_CAP = 30
public int getGasCapacity(int gasCapacity)
{
if(currentGas <= GAS_CAP)
{
gasCapacity = GAS_CAP - currentGas;
}
else gasCapacity = currentGas;
return gasCapacity;
}
你不知道別人什麼** **? – 2014-10-18 19:49:36
那麼究竟是什麼問題,@JayLo? – Mureinik 2014-10-18 19:50:41
什麼是'currentGas'?你爲什麼要修改方法參數? – 2014-10-18 19:51:24