試運用 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;
- }
複製代碼 |