標題:
排序 (一)
[打印本頁]
作者:
tonyh
時間:
2016-1-22 20:05
標題:
排序 (一)
本帖最後由 tonyh 於 2016-1-22 21:19 編輯
利用
選擇排序法
, 將任意6個整數, 由小而大排列出來.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int tmp;
int n[6]={12,57,-6,-32,0,23};
cout<<"排序前: ";
for(int i=0; i<6; i++)
cout<<n[i]<<" ";
cout<<endl;
for(int i=0; i<5; i++)
{
for(int j=i+1; j<6; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"排序後: ";
for(int i=0; i<6; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2016-1-22 20:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int tmp;
int n[6]={12, 57, -6, -32, 0, 23};
cout<<"排序前: ";
for(int i=0; i<=5; i++)
cout<<n[i]<<" ";
cout<<endl;
for(int i=0; i<=5; i++){
for(int j=5; j>i; j--){
if(n[j]<n[i]){
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
tmp=0;
}
}
}
cout<<"排序後: ";
for(int i=0; i<=5; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2016-1-22 21:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int tmp;
int n[6]={0, 0, 0, 0, 0, 0};
cout<<"請輸入任意六個數: ";
for(int i=0; i<=5; i++)
cin>>n[i];
cout<<"排序前: ";
for(int i=0; i<=5; i++)
cout<<n[i]<<" ";
cout<<endl;
for(int i=0; i<=5; i++){
for(int j=5; j>i; j--){
if(n[j]<n[i]){
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
tmp=0;
}
}
}
cout<<"排序後: ";
for(int i=0; i<=5; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2016-1-22 21:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int tmp;
int n[6]={12,57,-6,-32,0,23};
cout<<"排序前: ";
for(int i=0; i<6; i++)
cout<<n[i]<<" ";
cout<<endl;
for(int i=0; i<5; i++)
{
for(int j=i+1; j<6; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"排序後: ";
for(int i=0; i<6; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2016-1-22 21:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int tmp;
int n[6]={12,57,-6,-32,0,23};
cout<<"排序前: ";
for(int i=0; i<6; i++)
cout<<n[i]<<" ";
cout<<endl;
for(int i=0; i<5; i++)
{
for(int j=i+1; j<6; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"排序後: ";
for(int i=0; i<6; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃璽安
時間:
2016-1-22 21:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int tmp;
int n[6]={12,57,-6,-32,0,23};
cout<<"排序前: ";
for(int i=0; i<6; i++)
cout<<n[i]<<" ";
cout<<endl;
for(int i=0; i<5; i++)
{
for(int j=i+1; j<6; j++)
{
if(n[j]<n[i])
{
tmp=n[j];
n[j]=n[i];
n[i]=tmp;
}
}
}
cout<<"排序後: ";
for(int i=0; i<6; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2