我将运行时的单词存储在数组中,但是当我在单词之间留出空格时,程序不要求第二个输入,它直接给我一个输出而不需要第二个输入这是我的编码。
#include<iostream>
#include<conio.h>
using namespace std;
int main(){
char a[50];
char b[50];
cout<<"please tell us what is your language\t";
cin>>a;
cout<<"please tell us what is your language\t";
cin>>b;
cout<<a<<b;
getch();
}