c语言编写程序10到100之间个位数为7的数 日期:2016-07-10 23:47:55 人气:1 c语言编写程序10到100之间个位数为7的数 int n=0,i; for(i=10;i<=100;i++) if(i%10==7)++n; printf(“count=%d\n”,n);