【华为SO挑战赛】输入若干个整数,输出其中能呗这些整数中其他整数整除的哪些整数




#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
	char str[1000];
	int  num[1000];
	gets(str);
	int count=0;

	for (int i = 0; i <strlen(str); i+=2)
	{
		for (int j = i+2; j <strlen(str); j+=2)
		{
			if(((str[i]-'0')%(str[j]-'0'))==0)
				{
					
					num[count]=str[i]-'0';
					count++;
					break;
		     	}

				
		}
	}
	sort(num,num+count);
	for (int i = 0; i < count-1; i++)
	{
		cout<<num[i]<<" ";
	}
	cout<<num[count-1];

}


以上代码只是适合一位整数:

修改如下:

#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
	char str[1000];
	int num[1000];
	int count=0;
	cin.getline(str, 1000);
	int len = strlen(str);
	int num_i=0;
	char tmp[20];
	int tmp_i=0;

	for (int i = 0; i < len; ++i)
	{
		tmp_i = 0;
		if(str[i] != ',')
		{
			while(str[i] != ',' && str[i] != '\0')
			{
				tmp[tmp_i++] = str[i++];
			}
			tmp[tmp_i] = '\0';
			num[num_i++] = atoi(tmp);
			count++;
		}
	}


	int res[1000];
	int n=0;

	for (int i = 0; i < count; ++i)
	{
		for (int j = 0; j < count; ++j)
		{
			if(0==(num[i]%num[j]) && i!=j)
			{	
				res[n++]=num[i];
				break;
		     }				
		}
	}

	sort(res,res+n-1);

	for (int i = 0; i < n; i++)
	{
		cout<<res[i]<<" ";
	}
	cout<<endl;
	return 0;
}













评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值