Prime Checker

  • + 0 comments

    Because you used new BufferedReader(new InputStreamReader(in)); like this. the "in" is a static import from System.in

    If you had not used static import the above statement would look like this new BufferedReader(new InputStreamReader(System.in));