字符串中统计单词个数的两种做法

字符串中统计单词个数的两种做法

As a technology, “HailStorm” is so new that it is still only known by its code name.
输出结果:17

逗号和句号这种标点符号,默认与上一个单词之间无空格。

1.用stringstream做

#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main() {
string str,s1;
getline(cin, str);
stringstream is(str); //stringstream常用来字符串拼接和数据类型转换
int i = 0;
while (is>>s1)
{
i++;
}
printf(“单词数为:%d\n”, i);
}

2.传统做法

#include <iostream>
#include <string>
using namespace std;
int main()
{
string str;
int i = 0, j, count = 0;
getline(cin,str);
while (str[i++] != ‘\0)
{
if (str[i] == ’ ')
{
i++;
while (str[i] == ’ ')//空格连续
{
i++;
}
count++;
}
}
printf(“单词数为:%d\n”, count + 1);
}

————————————————
版权声明:本文为CSDN博主「快送我回院里」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_42480530/article/details/114298280

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值