ans = JOptionPane.showInputDialog(null, "Enter amount to be withdrawn from checking");
double withCheck = Double.parseDouble (ans);
if (withCheck >= checking)
{
JOptionPane.showMessageDialog(null, "You do not have enough in your account for that.");
}
else
{
double sum = checking - withCheck;
JOptionPane.showMessageDialog(null, "Your checking balance is now: $" + sum + ", and your savings balance is: $" + savings);
}
}
現在、このコードはwithCheck> =チェック時にプログラムを終了します。ある種のループを使用して、「if」ステートメントがfalseになり、elseステートメントを続行できるようになるまで質問を再度行う方法を知りたいです。