基本输入输出之从键盘读取信息

#include
usingnamespace std;
int main()
{
       
char c1,c2,c3,c4;
        cout
<<"Enter your first,middle and last initials"<<endl;//注意提醒用户输入的信息。
        cin
>>c1>>c2>>c3;//从键盘读取字符。
        cout
<<"You entered"<<c1<<c2<<c3<<endl;
        cout
<<"Enter 1 more character"<<endl;
        cin
>>c4;
        cout
<<"You entered"<<c4<<endl;
}

转载于:https://www.cnblogs.com/gsk11092114/archive/2012/06/22/2558834.html

你可能感兴趣的:(基本输入输出之从键盘读取信息)