回復 1# 周政輝
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a[5] , tmp=0;
for ( int i=0 ; i<5 ; i++ )
{
cout<<"請輸入第"<<i+1<<"個數字: ";
cin>>a;
}
cout << "您所輸入的數字順序: ";
for ( int i=0 ; i<5 ; i++ )
{
cout << a << " , " ;
}
for ( int x=0; x<4; x++ )
{
for ( int y=x; y<4; y++ )
{
if ( a[x] > a[y] )
{
tmp = a[x] ;
a[x]= a[y] ;
a[y]= tmp ;
}else{
a[x] = tmp;
}
}
}
cout << endl;
cout << "系統自動排序後的數: " ;
for ( int x=0 ; x<5 ;x++ )
{
cout << a[x] << " , " ;
}
cout << endl;
system("pause");
return 0;
} |