其他分享
首页 > 其他分享> > 2017 字符串统计(杭电)

2017 字符串统计(杭电)

作者:互联网

//
//  main.c
//  杭州电子科技大学
//
//  Created by yonuyeung on 2021/10/12.
//
#include<stdio.h>
int main()
{
    int n;
    char c;
    scanf("%d",&n);
    getchar();      //吸收输入n后的\n
    while(n--)
    {
        int count=0;
        while((c=getchar())&&(c!='\n'))     //像这种逻辑运算一定要用()把相应的公式括起来!
        {
            if(c>='0'&&c<='9') count++;     //具体请见ASCII
        }
        printf("%d\n",count);
    }
    return 0;
}

标签:int,yonuyeung,杭电,while,&&,字符串,2017,main,getchar
来源: https://blog.csdn.net/qq_59414507/article/details/120790164