编程语言
首页 > 编程语言> > 编写程序数一下1到100的所有整数中出现多少个数字9

编写程序数一下1到100的所有整数中出现多少个数字9

作者:互联网

#include<stdio.h>
int main()
{  
    int i=0;
    int count=0;
    for(i=1;i<=100;i++)
    { 
        if(i%10==9)
            count++;
        else if(i/10==9)
            count++;


    }
    printf("%d",count);
    return 0;
    

}

9 19 29 39 49 59 69 79 89 99 ——10个

91 92 93 94 95 96 97 98 99——10个 

这个编程输出了19个  因为99经过if语句就不再经过else if语句了 所以把else if改成if就能解决

标签:count,10,编写程序,int,else,99,19,数一下,100
来源: https://blog.csdn.net/weixin_59428751/article/details/120600882