比赛 20150711暑期B班 评测结果 AAAAAAAAAA
题目名称 计数问题 最终得分 100
用户昵称 奥、神代号~ 运行时间 0.123 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2015-07-11 11:24:32
显示代码纯文本
#include <fstream>
using namespace std;
int main()
{
    ifstream in("count2013.in");
    ofstream out("count2013.out");
    int n,w,b,i,m,a;
	a=1;m=0;
    in>>n>>w;
    for(i=1;i<=n;i++)
    {
    a=i;
    while(a>0)
    {
    b=a%10;a =a/10;
    if(b==w)
		m++;
    }
    }
    out<<m<<endl;
    in.close();
    out.close();
    return 0;
    }