-
Lenguaje
C
-
Descripción
Pide al usuario N números, los guarda en un arreglo, ordena el arreglo de menor a mayor con el método de la burbuja y muestra el arreglo ordenado
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float aux, *numeros;
int i, j, n;
printf ("Ingrese el n\243mero de elementos: ");
scanf ("%d", &n);
(void) getchar();
numeros = (float*) malloc (sizeof (float) * n);
for (i=0; i<n; i++)
{
printf ("Ingrese el valor del elemento %d: ", i);
scanf ("%f", &numeros[i]);
}
for(i=1; i<n; i++)
for(j=0; j<n-i; j++)
if (numeros[j]>numeros[j+1])
{
aux = numeros[j];
numeros[j] = numeros[j+1];
numeros[j+1] = aux;
}
printf ("\nN\243meros ordenados:\n");
for (i=0; i<n; i++)
printf ("[%d]: %g\n", i, numeros[i]);
printf ("\n");
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float aux, *numeros;
int i, j, n;
printf ("Ingrese el n\243mero de elementos: ");
scanf ("%d", &n);
(void) getchar();
numeros = (float*) malloc (sizeof (float) * n);
for (i=0; i<n; i++)
{
printf ("Ingrese el valor del elemento %d: ", i);
scanf ("%f", &numeros[i]);
}
for(i=1; i<n; i++)
for(j=0; j<n-i; j++)
if (numeros[j]>numeros[j+1])
{
aux = numeros[j];
numeros[j] = numeros[j+1];
numeros[j+1] = aux;
}
printf ("\nN\243meros ordenados:\n");
for (i=0; i<n; i++)
printf ("[%d]: %g\n", i, numeros[i]);
printf ("\n");
system ("pause");
return EXIT_SUCCESS;
}