C++ 统计输入的句子有多少英文字母

Posted anyeliuguang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 统计输入的句子有多少英文字母相关的知识,希望对你有一定的参考价值。

// ConsoleApplication1.cpp: 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;

int countnubstr(string str)
{
int returnnum = 0;
for (int i = 0; i<str.length(); i++)
{
if ((str[i] >= ‘a‘ && str[i] <= ‘z‘) || (str[i] >= ‘A‘ && str[i] <= ‘Z‘))
{
returnnum++;
}
}
return returnnum;
}

void main()
{
string str;
cout << "Please input English Line" << endl;
//流输入一串英文句子
getline(cin,str);
cout << endl<< "There is " << countnubstr(str) << "noumber words int this English Line" << endl;
getchar();
}

以上是关于C++ 统计输入的句子有多少英文字母的主要内容,如果未能解决你的问题,请参考以下文章

C语言:统计输入的一行英文句子中的字母及单词个数,带注解!

C语言:输入一行字符,统计其中有多少个单词,单词之间用空格分隔开

python求单词个数

python中输入字符串,统计字符串中大小写英文字母各有多少个?

LeetCode1832. 判断句子是否为全字母句(C++)

C++ 输入一行字符,分别统计出其中英文字母个数~~