The C ++ program has a small problem (input stream)

Source: Internet
Author: User

# Include <iostream>
Int main ()
{
Char ch;
STD: CIN> CH;
While (Ch! = 'Q ')
{
Int sum = 0, value;
While (STD: CIN> value)
Sum + = value;
STD: cout <"sum is:" <sum <STD: Endl;

STD: cout <"Please input ch" <STD: Endl;

STD: CIN> CH;
}
Return 0;

}

After I run it, I enter a character and a number to sum the values, but the subsequent programs cannot control it;

Where is the problem?

If you want the while (STD: CIN> value) condition to be false, you must enter an invalid character;

This value remains in the input stream after it is input, and the status bit is set, and the input is closed.

Therefore

Add STD: CIN before STD: CIN> CH. clear (); // clear the status bit STD: cin. ignore (); // read and discard a character. STD: CIN> CH;

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.