• Lenguaje

    C

  • Descripción

    Pide al usuario 10 nombres, los guarda en un arreglo, ordena el arreglo en orden alfabético 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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define TAMANO 10

int main (void)
{
    int i, j;
    char nombres[TAMANO][255], nombre[255];
    for (i=0; i<TAMANO; i++)
    {
        printf ("Ingrese el nombre %d: ", i+1);
        scanf ("%[^\r\n]", nombres[i]);
        (void) getchar ();
    }
    for (i=1; i<TAMANO; i++)
        for (j=0; j<TAMANO-i; j++)
            if (strcmp (nombres[j], nombres[j+1])>0)
            {
                strcpy (nombre, nombres[j]);
                strcpy (nombres[j], nombres[j+1]);
                strcpy (nombres[j+1], nombre);
            }
    printf ("\nNombres ordenados:\n\n");
    for (i=0; i<TAMANO; i++)
        printf ("Nombre %d: %s\n", i+1, nombres[i]);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}