#include
#include
using namespace std;
int main(){
int count=0;
string str;
while(cin>>str) count++;
cout<return 0;
}
输出输入字符串的个数,按CTRL+Z停止输入(ctrl+z相当于输入一个EOF,来表示输入已经结束)
是控制台输入多个字符串么?是的话,类似这样...
string strTmp;
int iStrCnt = 0;
while (cin >> strTmp)
{
++iStrCnt;
}
是求不同的字符串个数吗
你的问题不完整吧,程序要怎么结束呢