私は銀行を作ろうとしています、私はスキャナーオプションのものを作っているので、1を押すとお金を引き出すことができます2を押すとお金が追加され、銀行から降りるために3が追加されます. しかし、2 または 3 を押しても何も起こらないので、別の方法で試してみましたが、さらに多くのエラーが発生し、違いがわかりません。
------注------ ネストを解除しようとしましたが (それがフレーズの場合)、ボタンの近くで構文エラーが発生しました (場所をマークしました)。それを修正する方法がわかりません
import java.util.Scanner;
public class Bank {
public static void main (String [] args) {
System.out.println("Welcome To Harry's Bank");
//Pin System
System.out.println("Please Enter Your Bank Pin.");
Scanner userInput = new Scanner (System.in);
int number;
int password = 7123;
int amount = 4000;
number = userInput.nextInt();
if (number == password) {
System.out.println("Pin Accepted");
System.out.println("You Have Now Entered Harry's Bank!");
System.out.println("Press The Number Of The Option You Would Like.");
System.out.println("1.Withdraw Money.");
System.out.println("2.Put In Money");
System.out.println("3.Exit Bank");
Scanner Options = new Scanner (System.in);
int option;
option = userInput.nextInt();
if (option == 1) {
//Withdraw Money System
System.out.println("You Have £4000");
System.out.println("How Much Would You Like To Take Out?");
Scanner Input = new Scanner (System.in);
int numbere;
numbere = userInput.nextInt();
if (numbere < 4000) {
int money = amount - numbere;
System.out.println("You Have Now £" + money);
System.out.println("Thank You For Banking At Harry's Bank!");
System.out.println("Please Come Again!");
}else{
System.out.println("You Do Not Have Enough Money!");
}
}
else if (option == 2) {
//AddMoney System
Scanner AddMoney = new Scanner (System.in);
int AddMoney1;
AddMoney1 = userInput.nextInt();
int NewMoney = (amount + AddMoney1);
System.out.println("How Much Would You Like To Enter?");
System.out.println("You Now Have " + NewMoney + "!");
System.out.println("Thank You For Using Harry's Bank!");
}
else if (option == 3) {
System.out.println("");
System.out.println("");
System.out.println("");
System.out.println("");
System.out.println("");
System.out.println("");
System.out.println("");
System.out.println("Goodbye!");
}
}else{
System.out.println("Next Time Only Press 1,2 or 3!");
}
//error Here For Else "Syntax error on token "else", { expected"
}else{
System.out.println("Pin Declined!");
}
}
}