CPlusPlusThings/practical_exercises/10_day_practice/day10/文件例题/12-1.cpp
Light-City a4d828bb4c update
2020-04-06 00:57:02 +08:00

18 lines
396 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//用cin输入字符串数据时如果字符串中含有空白就不能完整输入。因为遇到空白字符时cin就认为字符串结束了。
#include<iostream>
using namespace std;
int main(int argc, char const *argv[])
{
char a[50];
cout<<"please input a string:";
cin>>a;
cout<<a<<endl;
system("pause");
return 0;
}
/*
若a的内容是
this is a string!
就难以输入啦!
这样的数据应用输入流类的成员函数输入
*/