c++的第一天

思维导图

c++的第一天_第1张图片

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

#include 
#include 

using namespace std;

int main()
{
    string str;
    cout << "请输入一串包含大写小写数字和空格的字符串:" ;
    getline(cin,str);
    array a{};//分别计算大写、小写、数字、空格、其他字符
    int b=str.size();
    for(int i=0 ; i= 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;
}

c++的第一天_第2张图片

你可能感兴趣的:(c++)