标题:有问题一个简单的请教
只看楼主
和尚
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2005-10-29
 问题点数:0 回复次数:3 
有问题一个简单的请教
#include<iostream.h>
class Du
{
int a[5];
public:
void accept_details()
{
for(int i=0;i<5;i++)
{
cout<<"input the employee detail"<<endl;
cin>>a[i];
}
}
void count()
{
for(int i=0;i<5;i++)
{
for(int j=0;j<4-i;j++)
{
int tem=0;
if (a[i]>a[i+1])
{
tem=a[i];
a[i]=a[i+1];
a[i+1]=tem;
}

}
cout<<a[i]<<endl;
}

}
};
void main()
{
Du a;
a.accept_details();
a.count();
}



以上是用冒泡排序问题,但输入5,4,3,2,1后只比了一次,不知道那里错了
搜索更多相关主题的帖子: include 
2005-10-29 18:45
unicorn
Rank: 4
等 级:贵宾
威 望:14
帖 子:1066
专家分:0
注 册:2005-10-25
得分:0 

//n个数比较时 比较n-1次就可以啦

#include<iostream.h>
class Du
{
int a[5];
public:
void accept_details()
{
for(int i=0;i<5;i++)
{
cout<<"input the employee detail"<<endl;
cin>>a[i];
}
}
void count()
{
for(int i=0;i<4;i++)
{
for(int j=0;j<4-i;j++)
{
int tem;
if (a[i]>a[i+1])
{
tem=a[i];
a[i]=a[i+1];
a[i+1]=tem;
}

}
}
for(int i=0;i<5;i++)
{
cout<<a[i]<<endl;
}

}
};
void main()
{
Du a;
a.accept_details();
a.count();
}


unicorn-h.spaces. ◇◆ sava-scratch.spaces.  noh enol ! pue pu!w hw u! shemle aq ll!m noh 
2005-10-29 22:16
sailer
Rank: 1
等 级:新手上路
帖 子:69
专家分:0
注 册:2005-10-12
得分:0 
循环问题没搞懂啊
你自己看我的改后的程序。输出的第二个FOR循环。每次和他后面的比较

#include<iostream.h>
class Du
{
int a[5];
public:
void accept_details()
{
for(int i=0;i<5;i++)
{
cout<<"input the employee detail"<<endl;
cin>>a[i];
}
}
void count()
{
for(int i=0;i<5;i++)
{
for(int j=i;j<5;j++)
{
int tem =0;
if (a[i]>a[j])
{
tem=a[i];
a[i]=a[j];
a[j]=tem;
}

}
cout<<a[i]<<endl;
}

}
};
void main()
{
Du a;
a.accept_details();
a.count();
}

希望大家多多配合他人,多多帮助他人。 支持国家的 产品,尽量不买外国货。
2005-10-29 22:30
和尚
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2005-10-29
得分:0 

谢谢了!...


农夫三拳 ----农妇,山前,有点田
2005-10-30 10:04



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-31845-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.059083 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved