cin.get()
用法1: cin.get(字符变量名)可以用来接收字符
cin.get(字符数组名,接收字符数目)用来接收一行字符串,可以接收空格
#include <iostream> using namespace std;
main ()
{
char a[20];
cin.get(a,20);
cout<<a<<endl;
}
cin.get()
用法1: cin.get(字符变量名)可以用来接收字符
cin.get(字符数组名,接收字符数目)用来接收一行字符串,可以接收空格
#include <iostream> using namespace std;
main ()
{
char a[20];
cin.get(a,20);
cout<<a<<endl;
}