在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;
}

 

温馨提示:答案为网友推荐,仅供参考
第1个回答  2014-11-01
#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;
}

相似回答