An example of this would be
i = 0; while(i < 3) { Scanner scan = new Scanner(); String variableIWantToCallLater = scan.nextLine(); }
User