Matematica vetor
Resenha: Matematica vetor. Pesquise 862.000+ trabalhos acadêmicosPor: FelipeMartins78 • 13/11/2013 • Resenha • 461 Palavras (2 Páginas) • 268 Visualizações
#include<stdio.h>
# define N 20
main()
{
int vet[N],vet2[N],x,y,t;
for(x=0;x<N;x++)
{
printf("entre com o valor para posicao %d do vetor \n",x);
scanf("%d",&vet[x]);
}
//backup de vet
for(x=0;x<N;x++)
{
vet2[x]=vet[x];
}
//coloca em ordem crescente
for(y=0;y<N;y++)
{for(x=0;x<N;x++)
{
if ((vet2[x]>vet2[(x+1)])&&(x<(N-1)))
{
t=vet2[x];
vet2[x]=vet2[(x+1)];
vet2[(x+1)]=t;
}
}}
//impressao do vetor
printf("vetor original\n");
for(x=0;x<N;x++)
{
printf("%d ",vet[x]);
}
printf("\nvetor em ordem\n");
for(x=0;x<N;x++)
{
printf("%d ",vet2[x]);
}
getch();
}
...