首页 > 代码库 > 长沙专场--【长沙专场】2015届SO挑战赛(晋级赛20日上午)

长沙专场--【长沙专场】2015届SO挑战赛(晋级赛20日上午)

#include<iostream>
using namespace std;
int main()
{
	int a,b;
	cin>>a>>b;
	if(a%5!=0)
		a=a+5-a%5;
	int count=0;
	for(int i=a;i<=b;i=i+5)
	{
		if(i%2==0&&i%3==0&&i%5==0)
			count=count+1;
	}
	cout<<count<<endl;
	return 0;
}


#include<iostream>
#include<string.h>
using namespace std;
int main()
{
	unsigned int a,b;
	cin>>a>>b;
	char buff1[10],buff2[10];
	memset(buff1,0,10);
	itoa(a,buff1,10);
	memset(buff2,0,10);
	itoa(b,buff2,10);
	char temp;
	for(int i=0,j=strlen(buff1)-1;i<j;i++,j--)
	{
		temp=buff1[i];
		buff1[i]=buff1[j];
		buff1[j]=temp;
	}
	a=atoi(buff1);
	for(int i=0,j=strlen(buff2)-1;i<j;i++,j--)
	{
		temp=buff2[i];
		buff2[i]=buff2[j];
		buff2[j]=temp;
	}
	b=atoi(buff2);
	int sum=a+b;
	cout<<sum<<endl;
	return 0;
}




总结:第一道题目与“2015届校招机考(9月12日上午)”的第二道题目是一样的,第三道题目----电话号码没写出来~

因为9月12日去了阿里巴巴面试,没有参加华为那天的机试。然后昨天的腾讯笔试和华为机试又有冲突,所以腾讯的笔试也没能参加,期盼华为的面试机会,期盼华为的offer~

身边的同学和朋友有过了阿里巴巴的内推的终面,有过了百度的内推的终面,心里多少有点羡慕,心想着找工作有时候就是善于抓住机遇,并拥有实力吧。

长沙专场--【长沙专场】2015届SO挑战赛(晋级赛20日上午)