Hello i'm currently a beginner in Java. The code below is a while loop that will keep executing until the user inputs something other than "yes". Is there a way to make the scanner accept more than one answer? E.g. yes,y,sure,test1,test2 etc.
import java.util.Scanner;
public class Test {        
    public static void main(String[] args) { 
        Scanner in = new Scanner(System.in);
        String ans = "yes";
        while (ans.equals("yes")) 
        {
            System.out.print("Test ");
            ans = in.nextLine();
        }        
    }
}
 
     
     
    