public static void main(String args[]) throws IOException{
String choose="";
System.out.println("are you a student?\n");
choose = Keyboard.getString();
while (choose.equals("no")){
System.out.println("are you a senior? \n");
choose = Keyboard.getString();
}
}