#include <stdio.h> #include <stdlib.h> int main() { int a,b; int count = 0; int i; scanf("%d %d",&a,&b); for(i = 1;i <= a; ++i) { int k = i;//如果不将i值赋值给k,那么i值将会在while语句中改变,而影响for循环使用,i将变为0,重新被赋值为1进入死循环 while(k > 0) { if(b == k % 10) count++; k /= 10;//像11,22,33这种数字 } } printf("%d", count); return 0; }