07. 输入文字2

创建日期:2024-07-13
更新日期:2025-02-01

textin2.cpp

#include <iostream>

int main()
{
    using namespace std;
    char ch;
    int count = 0;

    cout << "Enter characters; enter # to quit:\n";
    cin.get(ch);
    while (ch != '#')
    {
        cout << ch;
        ++count;
        cin.get(ch);
    }
    cout << endl
         << count << " characters read\n";
}