標題:
排序 (一)
[打印本頁]
作者:
周政輝
時間:
2018-7-7 14:53
標題:
排序 (一)
利用氣泡排序法, 將任意6個整數, 由小而大排列出來.
[attach]4433[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int tmp;
int n[6]={0,-33,49,-19,7,22};
cout<<"排序前: ";
for(int i=0; i<6; i++)
cout<<n[i]<<" ";
for(int i=0; i<5; i++)
{
for(int j=i+1; j<6; j++)
{
if(n[j]<n[i])
{
tmp=n[i];
n[i]=n[j];
n[j]=tmp;
}
}
}
cout<<endl;
cout<<"排序後: ";
for(int i=0; i<6; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王駿愷
時間:
2018-7-7 15:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int tmp=0;
int n[6]={5,15,50,48,33,-20};
cout<<"排序前:";
for(int i=0;i<6;i++)
cout<<n[i]<<" ";
for(int i=0;i<5;i++)
{
for(int j=i+1;j<6;j++)
{
if(n[j]<n[i])
{
tmp=n[i];
n[i]=n[j];
n[j]=tmp;
}
}
}
cout<<endl;
cout<<"排序後: ";
for(int i=0;i<6;i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴嘉禾
時間:
2018-7-7 15:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num;
int l[6]={0,-35,48,-13,7,22};
cout<<"排序前: ";
for(int i=0; i<6; i++)
cout<<l[i]<<" ";
for(int i=0; i<5; i++)
{
for(int j=i+1; j<6; j++)
{
if(l[j]<l[i])
{
num=l[i];
l[i]=l[j];
l[j]=num;
}
}
}
cout<<endl;
cout<<"排序後: ";
for(int i=0; i<6; i++)
cout<<l[i]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳秉翰
時間:
2018-7-7 15:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int seq[6]={12,-18,666,-9,35,-230};
int tmp;
cout<<"排序前: ";
for(int i=0; i<6; i++)
{
cout<<seq[i]<<" ";
}
for(int i=0; i<5; i++)
{
for(int j=i+1; j<6; j++)
{
if(seq[j]<seq[i])
{
tmp=seq[i];
seq[i]=seq[j];
seq[j]=tmp;
}
}
}
cout<<endl;
cout<<"排序後: ";
for(int i=0; i<6; i++)
{
cout<<seq[i]<<" ";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯東緯
時間:
2018-7-9 19:09
#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]<<" ";
}
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;
}
複製代碼
作者:
顏詢
時間:
2018-7-21 11:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int tmp;
int n[6]={0,-33,49,-19,7,22};
cout<<"排序前: ";
for(int i=0; i<6; i++)
cout<<n[i]<<" ";
for(int i=0; i<5; i++)
{
for(int j=i+1; j<6; j++)
{
if(n[j]<n[i])
{
tmp=n[i];
n[i]=n[j];
n[j]=tmp;
}
}
}
cout<<endl;
cout<<"排序後: ";
for(int i=0; i<6; i++)
cout<<n[i]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2