0

重複の可能性:
銀行アプリケーションの addAccount というメソッドを呼び出そうとしていますが、.class is expected エラーが発生し続けます

銀行の申請のために学校の課題をやろうとしています。addAccount メソッドが必要で、2 つの配列から 2 つのパラメーターを受け取ります。それぞれaccountNumberとaccountBalance。accountNoArray を addAccount メソッドに入力しようとしていますが、それを実行して呼び出すと、.class is expected error と表示されます

import java.util.*;
public class bank
{
public static void main(String[]args)
{
    Scanner sc = new Scanner(System.in);
    int choice = 0;
    int accountNo = 0;
    double accountBal = 0;
    int[] accountNoArray = new int[20];
    double[] accountBalArray = new double[20];
    displayMenu();
    System.out.print("Please Enter Your Choice: ");
    choice = sc.nextInt();
    switch(choice)
    {
        case 1 : addAccount(accountNo,accountBal,sc); break;
    }
}

public static void displayMenu()
{
    System.out.println("Menu");
    System.out.println("1. Add an account");
    System.out.println("2.Search an account with the given account number");
    System.out.println("3.Display accounts below the given balance");
    System.out.println("4.Exit");
}   

public static void addAccount(int accountNo,double accountBal,Scanner sc)
{
    System.out.print("Please Enter NRIC Number: ");
    accountNo = sc.nextInt();
    System.out.print("Please Enter Account Balance: ");
    accountBal = sc.nextInt();
}
}
4

0 に答える 0