首页 > 编程语言 > 详细

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

时间:2019-05-18 23:23:53      阅读:157      评论:0      收藏:0      [点我收藏+]

// 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++ 统计输入的句子有多少英文字母

原文:https://www.cnblogs.com/anyeliuguang/p/10887596.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!