Right, I am making a Tax Calculator and need an array to store the data that has been typed in when the user is prompted. However, being completely new to Java I am having some difficulty getting to grip with Arrays...so I am here to ask for help and see what help I can get. Here's the code that I already have;
The values that are entered here need to be put into an ArrayList, which can then be revisited and called upon when requested by the user.
Any help will be appreciated as I need to hand in soon!
Code:
System.out.println("Please Enter In Your First Name: "); String firstName = bufRead.readLine();
Code:
System.out.println("What is your household income per year?: "); String houseIncome = bufRead.readLine();
Any help will be appreciated as I need to hand in soon!
Comment