//Program Ordena (m‚todo de la burbuja) #include #define num 10 int i = num, j; float array [num],aux; main (void) { for (; i>0; i--) { gotoxy (1,1); textbackground (1); textcolor (9); clrscr (); printf ("Teclea el %d n£mero: ", (num-i+1)); textcolor (15); clreol (); scanf ("%f", &array[num-i]); for (j=(num-i); j>0; j--) { if (array [j]>array[j-1]) { aux = array[j]; array[j] = array[j-1]; array[j-1] = aux; } } } textcolor (0); clrscr (); printf ("Los n£meros ordenados son: "); textcolor (4); for (i=0; i