我正在嘗試編寫代碼,要求我插入我的年齡。如果它在10歲以下,我希望它再問我3次。如果它在10以上,它會說「歡迎」。我無法做到這一點。循環掃描儀
package newProject;
import java.util.Scanner;
public class mainclass {
public static void main(String[] args) {
System.out.println("Enter your age");
Scanner age= new Scanner(System.in);
int userage= age.nextInt();
if(userage<10){
for(int x = 3;x<3;x++){
System.out.println(userage+ "is too young");
System.out.println("Enter your age");
int userage1= age.nextInt();
}
}else{
System.out.println("welcome");
}
}
}
除了嚴重的代碼格式問題,我們需要更多的信息,而不僅僅是「它無法做到這一點」。請參閱[如何提問](http://www.stackoverflow.com/help/how-to-ask)。 – CodeMouse92