thanks for helping me bai..
here is a snippet of the method that does the inputting
Code:
System.out.print("Enter first name: ");
customer.setFirstName(console.nextLine());
System.out.print("Enter middle initial: ");
customer.setMI(console.nextLine().charAt(0));
System.out.print("Enter last name: ");
customer.setLastName(console.nextLine());
double balTemp;
do{
System.out.print("Enter account balance: ");
balTemp = console.nextDouble();
if(balTemp >= 5000)
break;
System.out.print("5000.00 is required. ");
}while(balTemp < 5000);
the First and Last name need to be able to accept strings with spaces..