记录编号 188292 评测结果 AAAAAAAAAA
题目名称 [NOIP 2013]计数问题 最终得分 100
用户昵称 Gravatar123 是否通过 通过
代码语言 C++ 运行时间 0.104 s
提交时间 2015-09-22 15:23:39 内存使用 0.31 MiB
显示代码纯文本
#include <iostream>;
#include <cstdio>
#include <cmath>
using namespace std;
int a,b,t;
void qw(int c)
{
	int q,w,r;
	if(c!=a+1)
	{
		w=c;
		for (;w>0;)
		{
			r=w%10;
			w=w/10;
			if(r==b)
			{
				t++;
			}
		}
		qw(c=c+1);
	}
}
int main(){
	freopen("count2013.in","r",stdin);
	freopen("count2013.out","w",stdout);
	t=0;
	int c,d,e,f,g;
	cin>>a>>b;
	qw(1);
	cout<<t;
	return 0;
}