Differentiation of cin, cin. get (), cin. getline (), cin. getcin. getline

Source: Internet
Author: User

Differentiation of cin, cin. get (), cin. getline (), cin. getcin. getline

1 cin is mainly used to input numbers

# Include <iostream>
Using namespace std;
Main ()
{
Int a, B;
Cin> a> B;
Cout <a + B <endl;

Input: 1 Press enter 2 press ENTER
Output: 3

2 when cin receives a string, it will end when it encounters "space" or "Press ENTER.

# Include <iostream>
Using namespace std;
Main ()
{
Char ch [10];
Cin> ch;
Cout <ch <endl;
}

Input: asdfgh

Output: asdfgh

Input: asdfgh // ends with a space
Output: asdfgh

End with Space

3 get () is used to receive a line of strings and can receive spaces. Get () retains the linefeed in the input sequence.

There can be two parameters. The first parameter is used to store the name of the array of the input row, and the second parameter is the number of characters to read.

For example, cin. get (A, B); // A indicates the array name, and B indicates the number of characters to receive.

4. The usage of getline () and get () is basically the same. The main difference is that the line break is discarded when getline () reads the string.

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.