码迷,mamicode.com
首页 > 其他好文 > 详细

华为初级——(练习用)挑7

时间:2014-06-30 20:16:38      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:c++   华为   挑7   

bubuko.com,布布扣

源程序:

#include<iostream>
#include<string>
using namespace std;
int main()
{
	int n;char buffer[6];
	int count=0;
	int len;
	cin>>n;
	for(int i=1;i<=n;i++)
	{
		if((i%7)==0)count++;
		else 
		{
			itoa(i,buffer,10);
			len=strlen(buffer);
			for(int j=0;j<len;j++)
			{
				if(buffer[j]=='7')
				{ 
					count++;
					break;
				}
			}
		}
	}
	cout<<count<<endl;
	return 0;
}

运行结果:

bubuko.com,布布扣

总结:So easy~没话说哈~我的程序是将不是7的倍数的那些数转换为字符串,再查找字符串中是否含有7。所以中间用到了itoa(i,buffer,10)这条很好用的语句。


华为初级——(练习用)挑7,布布扣,bubuko.com

华为初级——(练习用)挑7

标签:c++   华为   挑7   

原文地址:http://blog.csdn.net/xmh1954/article/details/35839851

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!