#include
#include
using namespace std;
#define MAX_SIZE 10
void sort(float arr[MAX_SIZE],int size);
int main()
{
cout<<"Enter numbers:"<
for(int i=0;i
}
sort(array,MAX_SIZE);
cout<<"Result:"<
cout<
}
void sort(float arr[MAX_SIZE],int size){
float temp;
for(int m=size-1;m>0;m--){
for(int n=0;n
temp=arr[n];
arr[n]=arr[n+1];
arr[n+1]=temp;
}
}
}
}