c++的第一天

发布时间:2024年01月24日

思维导图

输入一个字符串,计算大小写,数字,空格和其他字符

#include <array>
#include <string>

using namespace std;

int main()
{
    string str;
    cout << "请输入一串包含大写小写数字和空格的字符串:" ;
    getline(cin,str);
    array<int,5> a{};//分别计算大写、小写、数字、空格、其他字符
    int b=str.size();
    for(int i=0 ; i<b ; i++)
    {
         if(str.at(i)==' ')
         {
             a.at(3)++;
         }else if('Z' >= str.at(i) && str.at(i) >= 'A')
         {
            a.at(0)++;
         }else if('9' >= str.at(i) && str.at(i) >= '0')
         {
             a.at(2)++;
         }else if('z' >= str.at(i) && str.at(i) >= 'a')
         {
             a.at(1)++;
         }else
         {
             a.at(4)++;
         }
    }
    cout << "大写的个数:" << a.at(0) << endl;
    cout << "小写的个数:" << a.at(1) << endl;
    cout << "数字的个数:" << a.at(2) << endl;
    cout << "空格的个数:" << a.at(3) << endl;
    cout << "其他字符的个数:" << a.at(4) << endl;
    return 0;
}

文章来源:https://blog.csdn.net/2201_75433895/article/details/135829851
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。