gpt4 book ai didi

c++ - 如何统计有多少字排成一行?更聪明的方法?

转载 作者:行者123 更新时间:2023-11-30 03:33:26 25 4
gpt4 key购买 nike

如何找出一行中有多少个单词?我现在使用那种计算有多少空格的方法。但是,如果有人打了 2 个空格或开始行有空格怎么办。

有没有其他或更聪明的方法来解决这个问题?

我的解决方法或我的代码有什么评论吗?

我是这样解决的:

#include <iostream>
#include <cctype>
#include <cstring>

using namespace std;

int main( )
{
char str[80];

cout << "Enter a string: ";
cin.getline(str,80);

int len;

len=strlen(str);

int words = 0;

for(int i = 0; str[i] != '\0'; i++) //is space after character
{
if (isalpha(str[i]))
{
if(isspace(str[i+1]))
words++;
}
}

if(isalpha(str[len]))
{
words++;
}

cout << "The number of words = " << words+1 << endl;

return 0;
}

最佳答案

std 一行是:

words= distance(istream_iterator<string>(istringstream(str)), istream_iterator<string>());

关于c++ - 如何统计有多少字排成一行?更聪明的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42930759/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com