I am having some trouble and could use some help. I need a while loo that allows for an unlimited number of employees that uses a EOF sentinal value to control the loop. heres what I have so far, any help is greatly appreciated. I really dont understand this type of loop very well.
System.out.println(" Do you want to enter information ?");
String choose = input.nextLine();
System.out.println(" What is your name ? ");
String name = input.nextLine();
System.out.println(" What is your age ?");
String age = input.nextLine();
System.out.println(" What is your ssn ?");
String ssn = input.nextLine();
System.out.println(" What is your address ?");
String address = input.nextLine();
System.out.println(" Do you wish to make another entry ?");
while( = "yes");
{.