Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The program is supposed to ask the user for a number, and loops until the input is not a number (repeats if there is a number input). My code so far:

import java.util.*;

public class MataVarden
{
    public static void main(String[] args) throws Exception
    {   
        Scanner sc = new Scanner(System.in);    
        ArrayList<Integer> Values = new ArrayList<Integer>(); 

        System.out.print("Input a number: ");
        Values.add(sc.nextInt()); 

        Collections.sort(Values);
        System.out.println("Values sorted: " + Values);
    }
}

What do you need to do in order to break an input if a non-number is entered?

share|improve this question
You might want to think about what sc.nextInt() will do when the user doesn't enter a number (<enter> or "ABC"). You might also want to look at the Scanner API, docs.oracle.com/javase/6/docs/api/java/util/Scanner.html. – rajah9 Nov 29 '12 at 20:46

1 Answer

up vote 1 down vote accepted

Use a while loop for these case.

System.out.println("Input a number");
String line = "";
while (sc.hasNextLine() && !(line = sc.nextLine()).equals("")) {
    try {
        int val = Integer.parseInt(line);
        values.add(val);
    } catch (NumberFormatException e) {
        break;
    }

    System.out.println("Input a number");
}

Ok now, here's an explanation of what's happening there: -

  • sc.hasNextLine() checks whether there is an input to read or not. If yes then proceed to the next test
  • !(line = sc.nextLine()).equals("") checks whether the next input is an empty string or not. If it's an empty string, the condition fails, and loop ends.
  • Since we are reading the input using nextLine() method, we would have to parse it to integer using Integer.parseInt(line);
  • We need to enclose it in a try-catch block to handle input like "abc", which will not be parsed to an integer, and will throw an exception, in which case, we break out of the while loop from the catch block.
  • Note that I haven't used sc.nextInt() because it does not read the newline token from the input. So, there would not be any way to know when to terminate the loop.

As a side note, you should always follow Coding conventions in your code. Your variable name should start with a lowercase letter.

share|improve this answer
2  
This will not work as specified as it will not break out of the loop when a non-number or null has been entered. – Pescis Nov 29 '12 at 20:29
@Pescis. Well, it will work for non-number. For enter, yes, I'll edit the code. – Rohit Jain Nov 29 '12 at 20:30
1  
Although this is OK, I think that if a question is asked on a coursework it is more responsible to give an idea of what is going on and how to tackle the question rather than just giving an answer like this. – NutterzUK Nov 29 '12 at 20:37
@NutterzUK.. I would like you to remove your downvote, of course if you have done. – Rohit Jain Nov 29 '12 at 20:41
@NutterzUK.. Understand that it takes some time to write some explanation. It's not that I have all the answer stored somewhere and just copy-paste from there. And I myself don't believe on just give away code like answer. – Rohit Jain Nov 29 '12 at 20:46
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.