View Code of Problem 75

#include<stdio.h> 
#include<string.h>
#include<math.h>
int main(){
    int i,j,t,a[10];
    for(i=0;i<10;i++)
       scanf("%d",&a[i]);
    for(i=0;i<10;i++)
       for(j=i+1;j<=9;j++){
       	if(a[i]>a[j]){
       		t=a[i];
       		a[i]=a[j];
       		a[j]=t;
		   }
	   }
	   for(i=0;i<10;i++)
	      printf("%d\n",a[i]);
    return 0; 
     
}

Double click to view unformatted code.


Back to problem 75