题解 | #统计字符#

统计字符

http://www.nowcoder.com/practice/539054b4c33b4776bc350155f7abd8f5

using namespace std;

int main(void)
{
    int a=0,b=0,c=0,d=0;
    string str;
    getline(cin,str);
    for(int i =0;i<str.size();i++)
    {
        if(str[i]>='a'&&str[i]<='z')
        {
            a++;
        }
        else if(str[i]>='A'&&str[i]<='Z')
        {
            a++;
        }
        else if(str[i]>='0'&&str[i]<='9')
        {
            c++;
        }
        else if(str[i]==' ')
        {
            d++;
        }
        else b++;
    }
    cout<<a<<endl;
    cout<<d<<endl;
    cout<<c<<endl;
    cout<<b<<endl;
}

全部评论

相关推荐

亲切的00后在笔试:我也遇到了,所以我早他一步查看图片
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务