Java Learning notes [using scanner scanner for data entry]

Source: Internet
Author: User

Input ********/for/********* data
/** using scanner scanner for data entry
How to use the scanner scanner
Before the class declaration, introduce the scanner
Import Java.util.Scanner;
Declare a new scanner (that is, request a space for memory)
Scanner in
Value Assignment
In=new Scanner (system.in);
Scanner in=new Scanner (system.in);
Use the scanner.
Shaping data input: In.nextint () to receive
Double decimal Input: In.nextdouble () to receive
String input: In.next () to receive

There is no way to accept the input of a single string
**/

Import java.util.*;
You can also use the sub-package import Java.util.Scanner;
Class eqw{
public static void Main (String args[])
{
Scanner in=new Scanner (system.in);
SYSTEM.OUT.PRINTLN ("Pls input name:");
String Name=in.next ();
SYSTEM.OUT.PRINTLN ("Pls input nianji:");
int Nianji=in.nextint ();

System.out.println ("Name:" +name);
System.out.println ("Nianji:" +nianji);
}
}

Java Learning notes [using scanner scanner for data entry]

Related Article

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.