import javax.swing.*;
public class Tokenize{
public static String s[] = new String[100];
public static void main (String args[]){
String ask = JOptionPane.showInputDialog("Enter:");
isAsk(ask);
}
public static void isAsk(String ask){
StringTokenizer st = new StringTokenizer(ask," ",false);
int input = Integer.parseInt(st.nextToken());
if(input<=10&&input>=0){
System.out.println(input);
}
}
}
Here is the sample:
Enter: 1 2 3
I want to output 2, but it only output 1. What will i have to do with my code so that i can output either 1 or 2 or 3. Thank you ahead for the help.