Problemas de programación de matrices
# incluir ltstdio.h gt
void main()
{
int a[15], I, j, temp
printf("Ingrese 15 números: \ n ");
for(I = 0; ilt15; i )
scanf("d ", ampa[I]);< / p>
for(I = 0;I lt14;I)//Clasificación de burbujas
for(j = 0;j lt14-I;j)
if (a [j] gt; a[j 1])
{
temp = a[j];
a[j]= a[j 1] ;
a[j 1]= temp;
}
for(I = 0;ilt15;i)
printf( "d",a[I]);
printf("\n");
}