C++输入10个数字按从小到大排列且奇数在前偶数在后,似乎排序时出了问题求指导

#include<iostream>usingnamespacestd;intmain(){inta[10];intb[10];intm=0,n=0,i,j;inttem... #include <iostream>
using namespace std;
int main()
{
int a[10];
int b[10];
int m=0,n=0,i,j;
int temp;
//这里把输入的数字按奇偶存入两个数组
cout<<"请输入所需的10个数字";
for(i=0;i<10;i++)
{
cout<<"输入第"<<i+1<<"个数字" ;
cin>> temp;

if(temp%2==0){
a[m]=temp;
m++;
}
else{
b[n]=temp;
n++;
}

}
//现在a调整输出顺序;
for(i=0;i<m;i++)
{
for(j=0;j<m-i;j++){
if(a[j]>a[j+1])
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}

}
//调整b的顺序;
for(i=0;i<n;i++)
{
for(j=0;j<n-i;j++)
if(a[j]>a[j+1])
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
//现在开始输出;
for(i=0;i<m;i++){
cout<<b[i];
}
cout<<endl;
for(j=0;j<n;j++){
cout<<a[j];
}

return 0;
}
展开
 我来答
左自强
2011-10-18 · TA获得超过385个赞
知道小有建树答主
回答量:528
采纳率:0%
帮助的人:348万
展开全部
#include <iostream>
using namespace std;
int main()
{
int a[10];
int b[10];
int m=0,n=0,i,j;
int temp=0;;
//这里把输入的数字按奇偶存入两个数组
cout<<"请输入所需的10个数字";
for(i=0;i<10;i++)
{
cout<<"输入第"<<i+1<<"个数字" ;
cin>> temp;

if(temp%2==0){
a[m]=temp;
m++;
}
else{
b[n]=temp;
n++;
}

}
//现在a调整输出顺序;
for(i=0;i<m;i++)
{
for(j=1;j<m;j++){
if(a[i]>a[j])
temp=a[i];
a[i]=a[j];
a[j]=temp;
}

}
//调整b的顺序;
for(i=0;i<n;i++)
{
for(j=1;j<n;j++)
if(b[i]>b[j])
temp=b[i];
b[i]=b[j];
b[j]=temp;
}
//现在开始输出;
for(i=0;i<n;i++){
cout<<b[i];
}
cout<<endl;
for(j=0;j<m;j++){
cout<<a[j];
}

return 0;
}
匿名用户
2011-10-18
展开全部
#include <iostream>
using namespace std;
int main()
{
int a[10];
int b[10];
int m=0,n=0,i,j;
int temp;
//这里把输入的数字按奇偶存入两个数组
cout<<"请输入所需的10个数字";
for(i=0;i<10;i++)
{
cout<<"输入第"<<i+1<<"个数字" ;
cin>> temp;

if(temp%2==0){
a[m]=temp;
m++;
}
else{
b[n]=temp;
n++;
}

}
//现在a调整输出顺序;
for(i=0;i<m;i++)
{
for(j=0;j<m-i-1;j++) /* 这里应该-1 */
{
if(a[j]>a[j+1])
{ /* 这里有括号 */
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
}

}
//调整b的顺序;
for(i=0;i<n;i++)
{
for(j=0;j<n-i-1;j++)
if(b[j]>b[j+1])
{
temp=b[j];
b[j]=b[j+1];
b[j+1]=temp;
}
}
//现在开始输出;
for(i=0;i<n;i++){ /* b有n个,a有m个数 */
cout<<b[i];
}
cout<<endl;
for(j=0;j<m;j++){
cout<<a[j];
}
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
淡泊明志258369
2011-10-18
知道答主
回答量:22
采纳率:0%
帮助的人:11.3万
展开全部
问题出现在调整顺序的模块上:
for(i=0;i<m;i++)
{
for(j=i+1;j<m;j++){
if(a[j]<a[i])
temp=a[j];
a[j]=a[i];
a[i]=temp;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式