首页 > 其他 > 详细

P1179 数字统计

时间:2020-09-25 08:09:35      阅读:36      评论:0      收藏:0      [点我收藏+]

题目如下:

技术分享图片

 

 思路:合理利用多位数分离

代码如下:

#include<cstdio> 
#include<iostream>
using namespace std;
int f(int x){
	int count=0;
	while(x!=0){
		if(x%10==2)
		count++;	
		x/=10;//不管是否含有2,都要往前面寻找一位 
	}
	return count;
}
int main(){
	int l,r,sum=0;
	cin>>l>>r;
	for(int i=l;i<=r;i++)
	{ sum+=f(i);
	}
	cout<<sum<<endl;
	return 0;
}

  

P1179 数字统计

原文:https://www.cnblogs.com/miao-xixixi/p/13727342.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!