getline()或get()之后cin;不能连续输入的问题;

朋友循环输入时遇到的问题吧,直接用改过的代码吧,循环部分有注释

#include
#include
using namespace std;
void strmcpy(char* &s,char* t,int m)
{
    strcpy(s,&t[m-1]);
}
int main()
{
 int repeat,m;
 char *s,*t;
 cin>>repeat;
 cin.get();
 for (int i=0;i {
     t=new char[100];
     s=new char[100];
  cin.getline(t,100,'\n');    
        cin>>m;
        cin.get();         //cin>>m;输入流还有一个空格,下一次循环时getline()会直接接收,getline和get默认终止字符delim是'\n',所以会出现问题
  if(m>strlen(t))
  {
   cout<<"error input"<   continue;
  }
  strmcpy(s,t,m);
  cout< }
 delete[] t;
 delete[] s;
 return 0;
}

你可能感兴趣的:(getline()或get()之后cin;不能连续输入的问题;)