Enviado em 29/05/2018 - 01:26h
"Boa meia noite"! Estou estudando por conta própria algoritmos de ordenação de vetores e eu estava olhando mais sobre
#include <stdio.h>
#include <stdlib.h>
#define SIZE 10
int main(void){
int vet[SIZE]={45, 20, 89, 60, 35, 78, 13, 25, 97, 61};
printf("\n\nDesordenado: ");
for(unsigned int i=0; i<SIZE; i++){
printf("[%d] ", vet[i]);
}
printf("\n\n");
int swap;
for(unsigned int x=0; x<SIZE; x++){
for(unsigned int y=0; y<SIZE; y++){
if(vet[x]<vet[y]){
swap=vet[x];
vet[x]=vet[y];
vet[y]=swap;
}
}
}
printf("\n\nOrdenado: ");
for(unsigned int i=0; i<SIZE; i++){
printf("[%d] ", vet[i]);
}
printf("\n\n");
system("pause"); //troll detected...
return 0;
}
#include <stdio.h>
#include <stdlib.h>
#define SIZE 10
int main(void){
int vet[SIZE]={45, 20, 89, 60, 35, 78, 13, 25, 97, 61};
printf("\n\nDesordenado: ");
for(unsigned int i=0; i<SIZE; i++){
printf("[%d] ", vet[i]);
}
printf("\n\n\n\tOrdenando: \n\n\n");
int swap;
for(unsigned int x=0; x<SIZE; x++){
for(unsigned int y=0; y<SIZE; y++){
printf("[%d]=%d eh menor que [%d]=%d??? ", x, vet[x], y, vet[y]);
if(vet[x]<vet[y]){
printf("Yes!\n\n");
swap=vet[x];
vet[x]=vet[y];
vet[y]=swap;
for(unsigned int i=0; i<SIZE; i++){
printf("[%d] ", vet[i]);
}
printf("\n\n");
}else{
printf("No!\n");
}
}
}
printf("\n\nOrdenado: ");
for(unsigned int i=0; i<SIZE; i++){
printf("[%d] ", vet[i]);
}
printf("\n\n");
return 0;
}
Como gerar qualquer emoji ou símbolo unicode a partir do seu teclado
Instalar e Configurar o Slackware Linux em 2025
Como configurar os repositórios do apt no Debian 12 em 2025
Passkeys: A Evolução da Autenticação Digital
Instalação de distro Linux em computadores, netbooks, etc, em rede com o Clonezilla
Como dividir duas janelas igualmente e lado-a-lado na sua tela
Configurando o Conky para iniciar corretamente no sistema
3 configurações básicas que podem melhorar muito a sua edição pelo editor nano
Ocomon 6.0.1 - Problemas ao editar configurações estendidas (1)
MOVER ARQUIVO ENTRE PARTIÇOES (3)