c++day1作业

思维导图

提示并输入一个字符串,统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数

要求使用C++风格字符串完成

#include 
#include 
using namespace std;
int main()
{
        string a;
        cout<<"输入一个字符串"<='A'&&a.at(i)<='Z')
               huge++;
            else if(a.at(i)>='a'&&a.at(i)<='z')
               little++;
            else if(a.at(i)>='0'&&a.at(i)<='9')
               passwd++;
            else if(a.at(i)==' ')
               space++;
             else
                other++;
        }
            cout<<"大写个数为:"< 
   
 
   



 

c++day1作业_第1张图片 

你可能感兴趣的:(c++,算法,数据结构)