標題:
對陣列排序
[打印本頁]
作者:
鄭繼威
時間:
2024-1-8 17:55
標題:
對陣列排序
試運用
sort()
函式,對陣列做基礎排序 (遞增)。
#include<iostream>
#include<cstdlib>
#include<algorithm>
using namespace std;
int main()
{
int n[10]; //宣告一個大小為10的空陣列
cout<<"請任意輸入10個整數:"<<endl;
for(int i=0; i<10; i++)
cin>>n[i];
cout<<"排序前:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
cout<<endl;
sort(n, n+10);
cout<<"排序後:"<<endl;
for(int i=0; i<10; i++)
cout<<n[i]<<" ";
/*
for(int i: n)
cout<<i<<" ";
*/
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李宗儒
時間:
2024-1-10 18:28
#include<iostream>
#include<cstdlib>
#include<algorithm>
using namespace std;
int main()
{
int n[10];
cout<<"排序前"<<endl;
for(int i=0;i<=9;i++)
{
n[i]=rand();
cout<<n[i]<<"\t";
}
sort(n,n+10);
cout<<endl<<"排序後"<<endl;
for(int i=0;i<=9;i++)
{
cout<<n[i]<<"\t";
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2