- 论坛徽章:
- 0
|
#include <iostream.h>;
void main()
{
char str[128];
cout<<"type in a line of text and press enter"<<endl;
cin.getline (str,sizeof(str),'x');
cout <<"first line:"<<str<<endl;
cin.getline (str,sizeof(str));
cout <<"second line:"<<str;
}
运行结果:
type in a line of text and press enter
you should look "x" up in the subject catalogue.
first line:you should look "
second line:" up in the subject catalogue.
我的问题是当输入“you should look "x" up in the subject catalogue.”时,cin.getline (str,sizeof(str),'x');这条语句语句不是应该执行完了吗,为什么“x”后面的内容也输入进来了,请指教。
谢谢! |
|