Jump to content
Fórum Script Brasil
  • 0

Duvida: Gerar numeros, colocar em um vetor e ordenar em c


carolb.

Question

Escreva em linguagem C um programa que gere n valores inteiros no intervalo entre [1,50] e armazene os valores em uma variável vetor. Desenvolva o algoritmo para ordenar no próprio vetor os valores digitados. A ordenação deve ser crescente. A ordenação deve ser feita no próprio vetor, sem utilizar um vetor auxiliar.

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main ()
{
int i,n,j,aux;
int vet[n];
printf("entre com a quantidade de numeros: ");
scanf("%d",&n);
srand(time(NULL));
for(i=0;i<n;i++)
{
    vet[i]=rand()%50+1;

}
printf("o vetor e:  ");
for (i=0;i<n;i++)
printf("%d ", vet[i]);

for(i=0;i<n-1;i++)
{
  for (i=0;i<n-1;i++)
   {
    if (vet [i]> vet[i+1])
    {
        aux=vet[i];
        vet[i]=vet[i+1];
        vet[i+1]=aux;
    }
   }
}

  printf ("\n");
  printf ("ordenado e: ");
  for (i=0;i<n;i++)
  {
     printf("%d ", vet[i]);
  }
return 0;
}

Consigo gerar e colocar no vetor, porem não ta dando pra ordenar, qual é meu erro? :/

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Opa, acho que é isso:

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
  int main (){

  int i,n,j,aux,vet[n];

  
  printf("entre com a quantidade de numeros: ");
  scanf("%d",&n);
  srand(time(NULL));

  for(i=0;i<n;i++){
    vet[i]=rand()%50+1;}


  printf("\no vetor e:");
  for (i=0;i<n;i++){
       printf("%d ", vet[i]);}


     for(i=0;i<n;i++){
        for (j=i+1;j<n;j++){                                      
                                                                      
          if (vet[i]> vet[j]){                                   
                                                            
            aux=vet[j];                                        
            vet[j]=vet[i];
            vet[i]=aux;}
        }
    } 



  printf ("\n");
  printf ("\nordenado e:");
  for (i=0;i<n;i++){
       printf("%d ", vet[i]);}
  
  printf("\n\n");
  system("pause");
  return 0;
  
}

Edited by Binder
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...