0

Input:

2

My program:

 public static void main(String args[] ) throws Exception {
        /*
         * Read input from stdin and provide input before running*/

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));


        String line = br.readLine();

        int cases = Integer.parseInt(line);}

Error:

Exception in thread "main" java.lang.NumberFormatException: For input string: "2 "
    at java.lang.NumberFormatException.forInputString(Unknown Source)
    at java.lang.Integer.parseInt(Unknown Source)
    at java.lang.Integer.parseInt(Unknown Source)

How to solve this i want that the value of cases=2; what's wrong

1

1 Answer 1

3

You need to trim your string

int cases = Integer.parseInt(line.trim());}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.