C++ 统计输入的句子有多少英文字母
程序员文章站
2022-08-11 14:07:02
// ConsoleApplication1.cpp: 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include using namespace std; int countnubstr(string str){ i ......
// 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();
}
上一篇: 荣耀20携手漫威全新超英大片《X战警:黑凤凰》 即将亮相
下一篇: day23 03 组合的例子