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

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

时间:2014-09-21 14:52:20      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:华为   c++   

bubuko.com,布布扣

#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;
}

bubuko.com,布布扣

#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;
}

bubuko.com,布布扣

bubuko.com,布布扣

bubuko.com,布布扣

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

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

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

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

标签:华为   c++   

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

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