10.7作业

提示并输入一个字符串,统计该字符中大写、小写字母个数、数字个数、空格个数以及其他字符个数,要求使用C++风格字符串完成
#include 

using namespace std;

int main()
{
    string str;
    cout << "输入字符串>>";
    getline(cin,str);

    int da=0,xiao=0,kong=0,shu=0,qita=0;
    int len=str.size();
    for(int i=0; i='A' && str.at(i)<='Z')
            da++;
        else if(str.at(i)>='a' && str.at(i)<='z')
            xiao++;
        else if(str.at(i)>='0' && str.at(i)<='9')
            shu++;
        else if(str.at(i) == ' ')
            kong++;
        else
            qita++;
    }

    cout << "大写字符:" << da << endl;
    cout << "小写字符:" << xiao << endl;
    cout << "数字:" << shu << endl;
    cout << "空格:" << kong << endl;
    cout << "其他字符:" << qita << endl;
    return 0;
}

10.7作业_第1张图片

你可能感兴趣的:(c++,算法,开发语言)