输入字符串,统计单词个数
结合C++中的 size_t find_first_not_of (const char* s, size_t pos, size_t n) const; 方法和 size_t find_first_of (const char* s, size_t pos, size_t n) const;来统计字符串中单词的个数。
代码
#include
#include
#include
// 计算一个字符串中有多少个单词,并保存到一个vector中
using namespace std;
int main(void)
{
string text;
int counts = 0;
vector
cout << "Enter the string, end of by:*" << endl;
getline(cin, text, '*');
const string separators{ ", ;:./"!?'/n'" }; //单词间的分界符
输入字符串,统计单词个数最先出现在Python成神之路。
共有 0 条评论