12345678910111213141516171819202122 |
- // textin1.cpp -- reading chars with a while loop
- #include <iostream>
- int main()
- {
- using namespace std;
- char ch;
- int count = 0; // use basic input
- cout << "Enter characters; enter # to quit:\n";
- cin >> ch; // get a character
- while (ch != '#') // test the character
- {
- cout << ch; // echo the character
- ++count; // count the character
- cin >> ch; // get the next character
- }
- cout << endl << count << " characters read\n";
- // get rid of rest of line
- // while (cin.get() != '\n')
- // ;
- //cin.get();
- return 0;
- }
|