将数组中的奇数放在偶数前面

将数组里的奇数放到偶数的前面C++代码

#include <iostream>
using namespace std;

void fun(int x[],int n)
{
	int i,t,m=0;
	for(i=0;i<n;i++)
	{
		if(x[i]%2!=0)
		{
			t=x[i];
			x[i]=x[m];
			x[m]=t;
			m++;
		}
	}
}

int main()
{
	int x[7]={1,1554,22,17,18,23,99};
	fun(x,7);
	for(int i=0;i<7;i++)
	{
		cout<<x[i]<<" ";
	}
	return 0;
}


你可能感兴趣的:(将数组中的奇数放在偶数前面)