Please help a java noob
Go to solution
Solved by has246,
hey
try this:
public void chooseloacation() {
sc = new Scanner(System.in);
while (true) {
x = sc.nextInt();
if (x > 0 && x < 7)
break;
System.out.println("please select a number only from 1 to 6");
}
if (x == 5) {
System.out.println("poutses");
}
}

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now