標題:
排序 (一)
[打印本頁]
作者:
陳品肇
時間:
2019-2-16 10:41
標題:
排序 (一)
本帖最後由 陳品肇 於 2019-2-16 17:04 編輯
利用氣泡排序法, 將任意6個整數, 由小而大排列出來
[attach]5938[/attach]
#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[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;
}
複製代碼
作者:
陳柏霖
時間:
2019-2-16 17:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int tim;
int x[6]={12,57,-6,-32,0,23};
cout<<"排序前:";
for(int i=0; i<6; i++)
cout<<x[i]<<" ";
cout<<endl;
for(int i=0; i<5; i++)
{
for(int j=i+1; j<6; j++)
{
if(x[j]<x[i])
{
tim=x[i];
x[i]=x[j];
x[j]=tim;
}
}
}
cout<<"排序後:";
for(int i=0; i<6; i++)
cout<<x[i]<<" ";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
譚詩澐
時間:
2019-2-16 17:12
本帖最後由 譚詩澐 於 2019-3-12 18:06 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n[6]={12,57,-6,-32,0,23};
int tmp;
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;
}
複製代碼
作者:
戴安利
時間:
2019-2-16 17:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int tmp;
int n[6]={-15, 25, -37, -99, 62};
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]<<" ";
system("pause");
return 0;
}
複製代碼
作者:
戴偉宸
時間:
2019-2-16 17:31
本帖最後由 戴偉宸 於 2019-3-9 15:55 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int tmp;
int n[6]={12,57, -5, -82, 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[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;
}
複製代碼
作者:
戴唯陞
時間:
2019-2-16 17:32
#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[1]<<" ";
for(int i=0;i<5;i++)
{
for(int j=i+1;i<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;
}
複製代碼
作者:
蔡依宸
時間:
2019-3-9 15:32
#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[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;
}
複製代碼
作者:
蔡季庭
時間:
2019-3-9 15:32
#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[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://seed.istak.org.tw/)
Powered by Discuz! 7.2