解题思路:
注意事项:
参考代码:
#include<stdio.h>
int main()
{
int a[10],i,j;
for (i = 0; i < 10; i++)
scanf_s("%d", &a[i]);
for (i = 0; i < 9; i++)
{
for (j = 0; j < 9 - i; j++)
{
if (a[j] % 2 == 0 && a[j + 1] != 0)
{
int temp;
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
}
for (i = 0; i < 9; i++)
{
for (j = 0; j < 9 - i; j++)
{
if (a[j] % 2 != 0 && a[j + 1] % 2 != 0)
{
if (a[j] < a[j + 1])
{
int temp;
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
else if (a[j] % 2 == 0 && a[j + 1]%2== 0)
{
if (a[j] > a[j + 1])
{
int temp;
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
else
continue;
}
}
for (i = 0; i < 10; i++)
printf("%d ", a[i]);
return 0;
}
0.0分
0 人评分