码迷,mamicode.com
首页 > 编程语言 > 详细

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

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

标签:应用程序   using   space   ios   tchar   c++   ber   please   ring   

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

标签:应用程序   using   space   ios   tchar   c++   ber   please   ring   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!