其他分享
首页 > 其他分享> > AcWing 761. 字符串中的数字个数

AcWing 761. 字符串中的数字个数

作者:互联网

文章目录


AcWing 761. 字符串中的数字个数

本题链接:AcWing 761. 字符串中的数字个数

本博客给出本题截图
在这里插入图片描述

AC代码

代码

#include <iostream>
#include <cstring>

using namespace std;

const int N = 110;

char str[N];

int main()
{
    cin.getline(str, N);
    int c = strlen (str);
    
    int count = 0;
    for (int i = 0; i < c; i ++ )
    	if(str[i] >='0' && str[i] <= '9')
    		count ++;
    		
    cout << count;
    return 0;
}

标签:int,761,个数,str,字符串,AcWing
来源: https://blog.csdn.net/qq_52156445/article/details/120622410