• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

check for nonnumeric values entered via the java.util.scanner?

 
Ranch Hand
Posts: 62
Eclipse IDE MySQL Database Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Was it the scan.nextLine() instead of scan.next() to discard?

Oh and the \n\n was there because I just wanted some space before it prompts "Enter a number: " again. Really just OC attack. >_<
 
Marshal
Posts: 80645
473
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No, there is a much more serious mistake, I am afraid. Chucking myScanner.next() away is the correct thing to do in those circumstances.
You can easily get two line ends like this:- System.out.printf("%s is brilliant%n%n", "Campbell");

Only you can never get anybody to read it
 
reply
    Bookmark Topic Watch Topic
  • New Topic