#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{int antal=5;
    int lista[antal];
    lista[0]=5;
     lista[1]=2;
      lista[2]=4; 
       lista[3]=1; 
        lista[4]=3;
        
cout<<" hela innehallet: ";

for(int i=0; i<5; i++)
cout<<lista[i]<<" ";        
        
        int temp; //för sortering
    

     for(int m=antal-1; m>0; m--)
     {
        for(int n=0; n<m;n++)
        {
          if(lista[n] > lista[n+1])
          { 
             temp=lista[n];
             lista[n]=lista[n+1];
            lista[n+1]= temp;
             }
          }
        }
 
 cout<<endl<<" hela innehallet efter sortering: ";

for(int i=0; i<5; i++)
cout<<lista[i];        

 cout<<endl;        
        system("PAUSE");
    return EXIT_SUCCESS;
}