iv'e検索していますが、この特定のコードの回答を見つけるのは難しいです。私は、区切り文字のためにif文を検索し、その前後に整数を適用して変数を探します。例えば。彼らが1-50を入力した場合は、int aに1を、int to intにbを適用します。ここにif文を適用します。入力変数:デリミタを検索するためにif文を取得するにはどうすればよいですか?
if (yes.equalsIgnoreCase("no")){
if (a.equalsIgnoreCase(answer) && input.equalsIgnoreCase("instant")){
Thread.sleep(1);
}
else if (a.equalsIgnoreCase(answer) && input.equalsIgnoreCase("generate")){
Thread.sleep(randomInt);
}
else if (a.equalsIgnoreCase(answer) && !input.equalsIgnoreCase("generate") && !input.equalsIgnoreCase("instant")){
int x =Integer.parseInt(input);
x = x*60000;
Thread.sleep(x);
}
else if (a.equals("quit")){
System.exit(0);
}
else if (a.equals("Quit")){
System.exit(0);
}
else if (a.equals("")){
}
else{
JOptionPane.showMessageDialog(null,"Please check the answer then try again ");
i = i-2;
}
ありがとうございました。
完璧に動作します。ありがとうございます。 – Icy100