#include int main() { int i,j,t; int a[20]; for (i=;i<20;i++) for (j=0;j<20;j++) { if (a[j]>a[j+1]) { t=a[j]; a[j]=a[j+1]; a[j+1]=t; } } return 0; }