Incurable diseases: In Java, scanner consecutive get int and string type error occurred.

Source: Internet
Author: User

An error occurs when using the scanner class to get input and to get int type and string type data consecutively.

New Scanner (system.in); SYSTEM.OUT.PRINTLN ("input int type"); int a = sc.nextint (); SYSTEM.OUT.PRINTLN ("input string type"= sc.nextline (); System.out.println (a); System.out.println (s);
System.out.println ("Run Complete");

Run the result, enter 5 after the return, run finished directly, the request input string is skipped .

Reason, enter 5 after the carriage return, by the system mistakenly judge is the request input s string. So the operation is complete.

Solution:

1) Use a new scanner object to get the string.

New Scanner (system.in); SYSTEM.OUT.PRINTLN ("input int type"); int a =new  Scanner (system.in); SYSTEM.OUT.PRINTLN ("input string type"= sc2.nextline (); System.out.println (a); System.out.println (s); System.out.println ("Run Complete");

2) Add a nextline () to the Nextint and do not assign a value.

New Scanner (system.in); SYSTEM.OUT.PRINTLN ("input int type"); int a = sc.nextint (); Sc.nextline ();    // do not assign, accept enter System.out.println ("Input string type"= sc.nextline (); System.out.println (a); System.out.println (s); System.out.println ("Run Complete");

Write Time: 2017-08-20 14:43:10

Modification Time: 2017-08-20 14:51:12

End

Incurable diseases: In Java, scanner consecutive get int and string type error occurred.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.