int nIndex = 0;cout<<"请输入 15 个字符:"<<endl;while(nIndex < 15){ chArray[nIndex++] = getchar(); // getchar()才能接收空格和回车 } Count(chArray);}