在c++里编写函数统计字符串中字母和其他字符的个数
展开全部
#include<iostream>
using namespace std;
void Jisuan(char str[])
{
int num1=0,other=0,i=0;//num1表示字母的个数 other 表示其他的字符个数
while(str[i]!='\0')
{
if(str[i]>='a' && str[i]<='z' ||str[i]>='A' &&str[i]<='Z')
num1++;
else
other++;
i++;
}
cout<<str<<endl<<"字母的个数:"<<num1<<"\t"<<"其他字符个数:"<<other<<endl;
}
int main()
{
char str1[100];
cin>>str1;
Jisuan(str1);
return 0;
}
展开全部
#include<iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
int main()
{
char str[100] = {0};
cout << "请输入字符串:" << endl;
gets(str);
// 英文字母
int englishNum = 0;
int otherNum = 0;
for (int i = 0; i < strlen(str);i++)
{
if ((str[i] >= 'A' && str[i] <= 'Z')
|| (str[i]) >= 'a' && str[i] <= 'z')
{
englishNum++;
}
else
{
otherNum++;
}
}
cout << "英文字母: "<< englishNum << "其他字符: " << otherNum << endl;
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询