#include <stdio.h>
#include <conio.h>
main()
{
int vector[5];
int i, m, n;
int vuelta=0;
for(i=0; i<5;i++)
{printf("\nIntroduce valor %d \n", i+1);
scanf("%d", &vector[i]);
}
do{
for(i=0; i<5;i++)
{
n=vector[i];
m=vector[i+1];
if (vector[i]>vector[i+1])
{vector[i+1]=n;
vector[i]=m;
}
}
vuelta++;
}while(vuelta!=5);
printf("\nvalores:");
for(i=0; i<5;i++)
printf("\n%d\n", vector[i]);
getch();
}
#include <conio.h>
main()
{
int vector[5];
int i, m, n;
int vuelta=0;
for(i=0; i<5;i++)
{printf("\nIntroduce valor %d \n", i+1);
scanf("%d", &vector[i]);
}
do{
for(i=0; i<5;i++)
{
n=vector[i];
m=vector[i+1];
if (vector[i]>vector[i+1])
{vector[i+1]=n;
vector[i]=m;
}
}
vuelta++;
}while(vuelta!=5);
printf("\nvalores:");
for(i=0; i<5;i++)
printf("\n%d\n", vector[i]);
getch();
}
No hay comentarios:
Publicar un comentario